How can I deploy (create .ipa) iphone app using 'cordova build ios --release'?

前端 未结 5 1315
孤独总比滥情好
孤独总比滥情好 2020-12-12 10:46

I have created a \'helloworld\' iOS app with cordova using there documentation. The app successfully runs when I run cordova emulate ios. What I ca

5条回答
  •  无人及你
    2020-12-12 10:51

    I found this command which worked for me:

    cordova build ios --device
    cd platforms/ios/build/device
    /usr/bin/xcrun -sdk iphoneos PackageApplication "$(pwd)/$PROJECT_NAME.app" -o "$(pwd)/$PROJECT_NAME.ipa"
    

    Source: http://www.splinter.com.au/xcode-4-command-line-builds-of-iphone-apps/

    I did run @MD. Mohiuddin Ahmed's Ruby script first, which would have changed my xcodeproj file. I'm not sure if that was necessary but I don't think so.

    Update for XCode 8: As a commenter has noted, PackageApplication has been removed from XCode 8. To update the process, see the question: What's the replacement for Xcode's PackageApplication?

    Edited to clarify process by adding cordova build command as suggested by comments.

提交回复
热议问题