/Fabric.framework/run: permission denied

While my application is running, I get

Path / Library / Developer /Xcode/DerivedData/app-hhrnpfyhpluwgwcdjsjkbeehwwqs/Build/Intermediates/app.build/Debug-iphoneos/app.build/Script-C0EDB4D81B6759AC0067631D.sh: line 2:

If someone has encountered a similar problem, please suggest me how to fix this?

I work in Xcode 7.0, iOS 9

I have it on my list

enter image description here

Any help is appreciated!

Change: this solved my problem :

Step: 1: Register for Fabric here

Step 2: follow the steps in this LINK and add the key for the infrastructure structure to info.plist and "Run Script", as shown here.

+10
source share
5 answers

The problem is resolved using cloth 3.7.1 with cocoa pods :

Installed fabric with:

pod 'Fabric'

pod 'Crashlytics'

Now import below the two headers in the class "AppDelegate.h"

#import <Fabric/Fabric.h> #import <Crashlytics/Crashlytics.h> 

Add the line below to didFinishLaunchingWithOptions: (NSDictionary *) launchOptions:

[Cloth with: @ [[Crashlytics Class]]];

The shell script has been updated with the root <forage path> with the fabric key, which will be generated when tissue registration is set in the assembly phase , as shown below:

enter image description here

and added the Api key in plist, as shown:

enter image description here

With this integration, Crashlytics now shows all live device scores, a crash in the App Store with build versions and active users

Link: https://docs.fabric.io/apple/examples/cannonball/index.html

+3
source

I ran into this problem when I cloned a repo and the Fabric binaries were already there (performed by another developer). The solution was to run these commands in the project folder, and after that the xcode was built:

 chmod +x Fabric.framework/run chmod +x Fabric.framework/uploadDSYM 
+34
source

I ran into the same problem and fixed it by changing file permissions by running the following command in the terminal:

 chmod a+x Path/Library/Developer/Xcode/DerivedData/app-hhrnpfyhpluwgwcdjsjkbeehwwqs/Build/Intermediates/app.build/Debug-iphoneos/app.build/Script-C0EDB4D81B6759AC0067631D.sh chmod a+x ios_workspace/project/Pods/Fabric/run chmod a+x ios_workspace/project/Pods/Fabric/uploadDSYM 

Note. Update the uploadDSYM , run and .sh file uploadDSYM accordingly

0
source

using chmod 777 YOUR_WORKSPACE_PATH

0
source

This issue is caused by a lack of permissions on the startup file in Fabric.framework. You can find two files named run and uploadDSYM in the Fabric.framework folder of your project. Using the terminal command below solved my problem.

 chmod 777 run chmod 777 uploadDSYM 
0
source

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


All Articles