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

前端 未结 5 1317
孤独总比滥情好
孤独总比滥情好 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 11:05

    You can try a new tool from http://fir.im.

    They have a fir cli tool written in ruby. You can install it with the following command:

    sudo gem install fir-cli --no-ri --no-rdoc
    

    Sign up an account (all free like the good old testflight) and get a token from your profile. From your command prompt run:

    fir login
    

    Provide your token.

    CD into your directory where your .xcodeproj located.

    fir build_ipa . 
    

    After a while (if the build success) you will find your ipa in your ./build_ipa folder.

提交回复
热议问题