How to create .ipa file for testing using Runner.app?

前端 未结 3 1531
野性不改
野性不改 2020-12-24 00:59

I am android developer learning Flutter, and I really have some trouble trying to create debug .ipa file, for testing purposes.

So, I managed to create Runner.app fi

3条回答
  •  生来不讨喜
    2020-12-24 01:16

    You can create .ipa file by your self and send iOS build url to your client or other.

    Just follow me :)

    1) Generate your iOS build by below command
    -> flutter build ios --release/debug

    2) You will found exact path of your Runner.app Ex.
    -> Built /Users/UserName/Documents/AppName/build/ios/iphoneos/Runner.app. Just find this Runner.app file and do copy/paste it to Desktop.

    3) Create folder name is "Payload" (case-sensitive) on Desktop

    4) Move your Runner.app File in the "Payload" folder.

    5) Compress Payload folder to default .zip

    6) Convert/rename Payload.zip to Payload.ipa

    That's it. Now you have to open "Diawi" and Upload the Payload.ipa on it. Wait for 100% done. Click on send button. You will find one url, Send this url to your client or any other person. They can install on his/her device.

    ~ PS : Make sure diawi Url valid for those UDIDs that attached with your provisioning profile. And I haven't tried these steps to upload app on TestFlight/AppStore.

提交回复
热议问题