0

I have followed various tutorials and sites like (How to build an IPA without signing in Xcode 8, Building iOS applications using xcodebuild without codesign, https://www.youtube.com/watch?v=EID0TTxnxjA, https://www.youtube.com/watch?v=a4kelBsxZVs) to generate unsigned IPA, but did not able to generate iPA. below are the my target and project build settings Project build setting

Target build setting

General info

sdksetting

NOTE: It's a project of React Native.

Cœur
  • 37,241
  • 25
  • 195
  • 267
kalpa
  • 884
  • 1
  • 15
  • 22

1 Answers1

1

Step 1:

Set ‘Code Signing Identity’ = ‘Don’t Code Sign’ · Select Targets (‘’) -> Build Settings and find the ‘Signing’ section. · Set ‘Code Signing Identity’ = ‘Don’t Code Sign’

Setp 2:

Set Bundle Identifier = ‘com.testCompany.prjectname’ Set Version = 1.0 Set Build = 5 Remove ‘Automatically manage singing’ flag.

Step 3:

Open terminal and go to the project root folder. Then run the following command.

xcodebuild -workspace <projectName>.xcworkspace -scheme <projectName> -configuration Release clean archive -archivePath buildArchive/<projectName>.xcarchive CODE_SIGN_IDENTITY=”” CODE_SIGNING_REQUIRED=NO

Step 4:

After successfully completing above command, it will create a new ‘.xcarchive’ file inside ‘buildArchive’ folder ( the ‘buildArchive’ folder create inside your project folder) Zip that ‘.xcarchive’ file and send it to your team agent.

Vinod Kumar
  • 3,375
  • 1
  • 17
  • 35