Unable to install app with GoogleSignIn.bundle

Hi there,


When trying to install one of my apps in the iOS 11 simulator when using Xcode 9, the action fails and this alert appears:


Failed to change owner of file:///Users/vpimentel/Library/Developer/CoreSimulator/Devices/8D351C48-0258-46EC-814E-B21AFA494C6B/data/Library/Caches/com.apple.mobile.installd.staging/temp.rAixjM/Tuenti.app: Error Domain=MIInstallerErrorDomain Code=4 "Failed to remove ACL" UserInfo={NSUnderlyingError=0x7fe2f3e08f60 {Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied" UserInfo={SourceFileLine=392, NSLocalizedDescription=open of /Users/vpimentel/Library/Developer/CoreSimulator/Devices/8D351C48-0258-46EC-814E-B21AFA494C6B/data/Library/Caches/com.apple.mobile.installd.staging/temp.rAixjM/Tuenti.app/GoogleSignIn.bundle/Roboto-Bold.ttf failed: Permission denied, FunctionName=-[MIFileManager _removeACLAtPath:isDir:error:]}}, FunctionName=-[MIFileManager _removeACLAtPath:isDir:error:], SourceFileLine=392, NSLocalizedDescription=Failed to remove ACL}

That app uses CocoaPods and GoogleSignIn is one of the pods, I have this specifically in my Podfile:


pod 'Google/SignIn', '3.0.3'


Does someone know why this is happening?

Hi, I am also seeing something similiar:


Failed to change owner of file..../.app

"Faled to remove ACL"

Permission denied

GoogleMaps.bundle/bubble_left.png


Thank You,

Kenny

I was looking for answers to this one today. First I tried updating the google sign-in pod and noticed a message when installing it saying it has been deprecated. Searched online and tried "pod 'GoogleSignIn'" instead of pod 'Google/SignIn'" in the pod file. This seems to really install the latest version.


After updating the import to: #import <GoogleSignIn/GoogleSignIn.h> the project ran both on devices using XCode 8 and on the ios11 simulator with XCode9.


Edit: In this project I had Google Sign in but wasn't using it. Tried in another project that is using it and with the new version (4.0.2) I get an error when creating the GGLContext: "Unknown receiver 'GGLContext'; did you mean 'EAGLContext'?" So... solved one problem, now have another one...


Edit2: Solved it by configuring it as if not using pods. Setting the cliend_id manually seems to work fine

Unable to install app with GoogleSignIn.bundle
 
 
Q