Fabric release Xcode 6.3 codesign xcode-select

IosXcodeReleaseOtaTwitter Fabric

Ios Problem Overview


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?

Ios Solutions


Solution 1 - Ios

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!

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

Solution 2 - Ios

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.

Solution 3 - Ios

I had this problem because I have 4 versions of Xcode on my mac, and none of them are named simply 'Xcode'. So, I changed the desired version name from Xcode8.1 back to Xcode.

This part might not apply to most people: If you're using the xcode-select tool (you should if you have multiple versions of xcode on your computer) then you need to make sure xcode-select is pointing to the correct version with the correct name.

Solution 4 - Ios

The solution for using Xcode beta version

I assume this is due to archive in Xcode beta and the path location does not match. Of course, I experienced this and it worked. Just do this step:

sudo xcode-select --switch /Applications/Xcode-beta.app/

And do upload to Fabric again.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSagar KothariView Question on Stackoverflow
Solution 1 - IosMike BonnellView Answer on Stackoverflow
Solution 2 - IosB-RadView Answer on Stackoverflow
Solution 3 - IosjungledevView Answer on Stackoverflow
Solution 4 - IosPenggunaView Answer on Stackoverflow