How to create ipa in xcode 6 without Apple Developer account?

Finally found a way for creating .ipa build with xcodebuild command. Right click on Archive on Organizer. Click Show in Finder. You can see .xcarchive file in Finder. Open Terminal and cd to .xcarchive path. Using following command to generate .ipa file. This will save .ipa on Desktop. xcodebuild -exportArchive -exportFormat ipa -archivePath <FILE_NAME>.xcarchive -exportPath … Read more

Download and install an ipa from self hosted url on iOS

To distribute your app over-the-air (OTA, this means without using TestFlight or the official App Store), you may need to create 3 different files, namely: The .ipa file (using an ad-hoc provisioning profile) index.html manifest.plist You can use Beta Builder to generate these files: Archive your build. Save the .ipa on the Desktop. Download a … Read more

How to re-sign the ipa file?

It’s really easy to do from the command line. I had a gist of a script for doing this. It has now been incorporated into the ipa_sign script in https://github.com/RichardBronosky/ota-tools which I use daily. If you have any questions about using these tools, don’t hesitate to ask. The heart of it is this: CODESIGN_ALLOCATE=`xcrun –find … Read more

Re-sign IPA (iPhone)

Finally got this working! Tested with a IPA signed with cert1 for app store submission with no devices added in the provisioning profile. Results in a new IPA signed with a enterprise account and a mobile provisioning profile for in house deployment (the mobile provisioning profile gets embedded to the IPA). Solution: Unzip the IPA … Read more