Do we have any way, to build project with specific provision profile, and convert it to *.ipa without going though xcode UI hell?
My current build process looks like:
- Run ionic ios build
- Open project in xcode and run build again (without ionic ios build it takes wrong version of product). And “Archive” button unavailable without “Build”…
- Run Archive.
- Create *.ipa from archive
I don’t like this way. I want to run a couple of console commands and all.
Something like…
ionic build ios -exportProvisioningProfile “myprofile” -makeIPA “app.ipa”
Do we have solutions to do it this way?