Home > database >  How to create an IPA without having Developer Account in IOS in react-native in Updated OS and Xcode
How to create an IPA without having Developer Account in IOS in react-native in Updated OS and Xcode

Time:06-23

We have created the .xcarchive file code signing with our client's certificate & distribution provisioning profile, but we need to send the .ipa file to our client so that they can upload the app to the App store using Application Loader.

The only way to create the .ipa file in Xcode 4.5 is clicking Distribute -> Save for Enterprise or Ad-Hoc Deployment which has a description underneath saying "Sign and package application for distribution outside of the iOS App Store".

If we save the .ipa file this way, will it cause any problem submitting to the app store? Or is there a proper way of converting the .xcarchive to .ipa?

I want to create an IPA, but i don't have a Developer Account . but i want to share IPA to Client but i don't want to purchase any subscription!! Any Solutions ??

CodePudding user response:

If you have a Provisioning Profile in Xcode then below method will 100% work as it works for me :

Step:1 Create Archive

Step:2 Right-Click on the Archive and Click Show in Finder.

Step:3 You can see .xcarchive file in Finder.

Step:4 Right CLick on the .xcarchive file and click Show package content and go to the Products -> Applications folder. Create a new folder named Payload and drag the .app file into that folder.

Step:5 Compress [Create Zip File] the Payload folder and rename it to whatever you want and change the extention to .ipa.

Step:6 Upload that .ipa file in Diawi website and share it with Client.

  • Related