Failed to install the application on iOS 9 created using jenkins. The error says that Symlink has an absolute path

I am creating an application. I created an adhoc build to test the application on my iPad. I used the correct code signing certificate and training profile in the assembly. I have 2 iPads, 1 is iOS 8.3, and the other has iOS9.5 beta.

When I try to install the application on both iPads, the iPad with iOS8.3 allows me to install the application, but in iOS 9.5 beta it fails.

I use Xcode> Window> Devices and select my iPad and drag the assembly into the installed application. This leads to an error, for example: "Application installation error - could not write to the device."

EDIT: The console has the following error log:

  • Invalid symlink:
  • Retrieving the stream was an error: Error Domain = SZExtractorErrorDomain Code = 2 "Invalid symbolic link:
  • __ dispatch_source_read_socket_block_invoke_2: 188: Failed to complete the extraction: Error Domain = SZExtractorErrorDomain Code = 3 "This extractor previously detected an error and can no longer be used." UserInfo = {NSLocalizedDescription = This extractor previously encountered an error and can no longer be used.}

Please help me with this.

+4
source share
3 answers

We had the same problem today, and we found a solution that seems to work.

xcodebuild, , " " enter image description here

iOS9

+7

. , , :

[MIFileManager realPathForURL:ifChildOfURL:]: Rejecting /var/mobile/Library/Caches/com.apple.mobile.installd.staging/temp.BGmQCm/extracted/Payload/<app_name>.app/Frameworks/<framework_name>.framework/<framework_name>.framework -> /Users/mobile/Library/Developer/Xcode/DerivedData/<app_name>-bgvxkqkwligkcjcwrtdolronntfp/Build/Intermediates/ArchiveIntermediates/<app_name_dir>/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/<framework_name>.framework, as absolute symlinks are not allowed

, xcodebuild (Xcode 7.1). PackageApplication, , , Jenkin.

+2

, , xcodebuild ipa .

, , , ipa xcodebuild. , , " ", " ipa". , , ipa, .

+1

Source: https://habr.com/ru/post/1605892/


All Articles