skip to Main Content

Forgive me for whoever sees this — I am a new developer and cannot understand what I am missing here. When I build my Xcode workspace for my iPhone which includes ads from AdMob I get this single error:

Sandbox: rsync(1900) deny(1) file-read-data /Users/philiplattanzio/Library/Developer/Xcode/DerivedData/TigerRun-gexhklhksmplmfagqcwbsfjmflme/Build/Products/Debug-iphoneos/XCFrameworkIntermediates/GoogleUserMessagingPlatform/UserMessagingPlatform.framework/Headers

I believe I have the appropriate frameworks installed. I am not sure how to resolve this.

I reinstalled pods, and google swift package manager. I updated the privacy policy on AdMob (Not sure if this has an effect)

2

Answers


  1. Check that ENABLE_USER_SCRIPT_SANDBOXING is disabled in the project’s build settings.

    Xcode 15 beta build issues – https://developer.apple.com/forums/thread/731041?answerId=755722022#755722022

    Login or Signup to reply.
  2. Tested in Xcode 15.1enter image description here

    search for ENABLE_USER_SCRIPT_SANDBOXING in your build setting turn it to NO.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search