How to build an IPA without signing in Xcode 8

前端 未结 5 1045
执念已碎
执念已碎 2020-12-28 22:11

I have searched around SO and other places. I have only found older versions of this answer that don\'t seem to work any more, and tons of other stuff that isn\'t even rele

5条回答
  •  清酒与你
    2020-12-28 22:54

    I ended up finding a working solution for xcode 8. Here is the step by step

    1. (Optional) Change build location

    Xcode>preferences>locations>derived data>custom>your desktop

    1. Open Terminal and navigate to the project's folder
    2. Run manual build: xcodebuild -workspace (or -project) [workspacename.xcworkspace] -scheme [Schemename] -sdk iphoneos -configuration Release CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
    3. Open the location from Step 1 (derived data) and navigate to >your app>build>products>Release-iphoneOS
    4. Copy the .app file into a new subfolder named Payload (this folder name is case sensitive and much match verbatim)
    5. Compress Payload folder and rename it to app_name-version_number.ipa

    Boom. Done.

提交回复
热议问题