Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fabric release Xcode 6.3 codesign xcode-select

I'm trying to upload a release to Fabric & I'm getting errors as follows. I'm using the Xcode 6.3 (recently updated).

  • Xcode: 6.3
  • Fabric: 1.1.3
  • OSX: 10.10.3

An Error from Fabric tool

  1. What should I do to resolve above error & continue uploading the release via fabric desktop tool?

  2. Is there any other way to upload binary to fabric?

like image 278
Sagar Kothari Avatar asked Apr 10 '15 10:04

Sagar Kothari


2 Answers

Mike from Fabric here.

1) To clear that error from Fabric.app: Quit Fabric.app, then run this command to clear the local cache:

rm -rf ~/Library/Caches/com.crashlytics.mac 

You may also need to clear:

rm -rf ~/Library/Caches/com.crashlytics rm -rf ~/Library/Caches/com.crashlytics.data rm -rf ~/Library/Caches/com.crashlytics.run 

Then restart Fabric.app and you'll be all set!

2) To distribute outside of Fabric.app, use either method mentioned here.

like image 137
Mike Bonnell Avatar answered Oct 01 '22 07:10

Mike Bonnell


If you have multiple versions of Xcode installed on your system you may need to ensure the command line tools are set for the version of Xcode you're attempting to build from.

Navigate to "Locations" in Xcode preferences (select Xcode from the menu bar, then "Preferences..." then "Locations"). In the drop down next to "Command Line Tools:" select the version of Xcode you're using and then attempt a build.

like image 27
B-Rad Avatar answered Oct 01 '22 09:10

B-Rad