How to sign ipa after using unity-builder
See original GitHub issueI found a utility for uploading .ipa to apple store connect
xcrun altool --upload-app -t ios -f "$IPA_PATH" -u "$APP_STORE_CONNECT_USERNAME" -p "$APP_STORE_CONNECT_PASSWORD"
But before upload, it should be signed using apple certificates. I’m lost here. for android, we have some parameters about the key store but for iOS I can’t find any.
Can someone help me in the right direction?
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Path to the final IPA file - Unity Forum
Hello, I wanted to use Post-Build Script in the Cloud Build to push IPA file directly to the itunes connect as part of...
Read more >How to re-sign the ipa file? - Stack Overflow
ipa file with a provisioning profile after I generate an IPA like the following with a different provision profile? I would like to...
Read more >Deploy to the App Store - GameCI
While not required, it is recommended you use a separate Apple ID just for CI purposes. Create one if you haven't already. Next,...
Read more >how to resign an external ipa | Apple Developer Forums
Hello,. I want to know if there is a possibility to resing an ipa that i have not source's files ? Thx. App...
Read more >Support `flutter build ipa` with manual signing and ... - GitHub
There are no devices registered in your account on the developer website.". Workaround: I'm using the following commands which successfully ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@uchar The builder generates the xcode project, so you should not include the xcode project in git.
After using builder to generate the xcode project, you need to build the .ipa and upload to app store connect. You could manually run xcode and use that utility you mentioned. But I think it would be easier/better to use fastlane, like the docs that @webbertakken linked suggest.
Maybe this part of the gitlab docs could help a bit.