iOS Build Environment Help Center

Build Error with XCode generated Provision Profile

append delete Nhan

• Windows version: 10
• Builder version (from the builder UI title bar): 3.50.1
• iOS SDK version (from the builder UI title bar): 15.5

• A description of the context:
I want to test whether this asset works before enrolling in a Developer Account. Thus, I generated a Provisioning Profile from XCode. I followed the steps in the document and got the below error during the build process:

....
Output directory: build\Release-iphoneos\UnityFramework\UnityFramework.framework

+ Preparing output directory...
+ XCFrameworks: 0 supplied
+ Libraries: 5 supplied, 0 built
+ Frameworks: 0 supplied, 1 built
+ Pre-parsing project files...
+ Building dancingangel for iphoneos (configuration: Release)
+ [arm64] ./MainApp/main.mm.obj is up to date
+ [arm64] dancingangel is up to date
+ Creating universal binary (arm64)...
+ Stripping bitcode to reduce binary size...
+ Copying resources...
+ Creating Info.plist...
Notice: missing iphone 2x (90x90) image variant in app icon set 'AppIcon', falling back on best resolution icon.
+ Compiling Interface Builder launch storyboards...
+ [iphone] build\Release-iphoneos\iPhone-target\dancingangel.app\LaunchScreen-iPhone.storyboardc
+ [ipod] build\Release-iphoneos\iPhone-target\dancingangel.app\LaunchScreen-iPhone.storyboardc
+ [ipad] build\Release-iphoneos\iPhone-target\dancingangel.app\LaunchScreen-iPad.storyboardc
+ [all] build\Release-iphoneos\iPhone-target\dancingangel.app\LaunchScreen-iPhone.storyboardc
+ Optimizing PNG files in build\Release-iphoneos\iPhone-target\dancingangel.app for iOS...
+ Embedding framework: UnityFramework.framework...
+ Validating dependencies...
+ Embedding provisioning profile...
+ Signing code as Apple Development: nhanbyebye@yahoo.com.vn (BJZ69YQ6DR) with team ID L5QVN74PJW...
ldid: fatal: recursive signature failed on C:\Users\snowi\OneDrive\Desktop\DancingAngels_ios\build\Release-iphoneos\iPhone-target\dancingangel.app\Frameworks\UnityFramework.framework\UnityFramework

Please help to advise on this.

Reply RSS

Replies

append delete #1. Pierre-Marie Baty

Hello

This error happens when the code signer (ldid.exe) gets a non-success return code after another instance of itself returned from the task of signing another Mach-O binary (here, UnityFramework) than the main target (dancingangel).

This could theoretically happen if e.g. a security program (such as a paranoid virus scanner) interferes with the process by preventing an executable to start a second instance of itself. In such case, temporarily disabling the security program (or putting ldid.exe in the exceptions list) could solve the issue.

There are other possible failure reasons, but to obtain a more detailed log you should build in verbose mode: hold down the Shift key while you click the Build button for that. Hopefully the error messages will be explanative.

append delete #2. TH

Hi, I'm having the exact same problem.

• Windows version: 10
• Builder version (from the builder UI title bar): 3.50.1
• iOS SDK version (from the builder UI title bar): 15.5

I just built an empty Unity project with iOS Build and the log from the verbose mode build is here: https://pastebin.com/vhYtB1a5

I turned off the real-time virus scanner (Windows defender etc)

append delete #3. Pierre-Marie Baty

Hello

I see in the log that your private key's passphrase contains a special character (^). You should change the passphrase to one that contains alphanumeric characters only.

The OpenSSL command to change a key's passphrase is something like:

% from the Windows command line
"%IOSUNITYBUILDER_PATH%\Toolchain\openssl.exe" rsa -in "old_private.key" -out "new_private.key"
%

Of course, change "old_private.key" and "new_private.key" to the full pathnames of your private key and its new copy - or run the command in the Keychain directory so that you don't need to specify the file paths.

Reply

(Leave this as-is, it’s a trap!)

There is no need to “register”, just enter the same name + password of your choice every time.

Pro tip: Use markup to add links, quotes and more.

Moderators: Pierre-Marie Baty