xcrun
Xcode: iPhone app codesign error
The fix is pretty simple. In the Build Results window (which you probably got to by clicking the error icon in the lower right corner of your project window), change the pulldown menu from ‘Device – iPhone xxx’ to ‘Simulator – iPhone xxx’. (source: kickasslabs.com)
Can an Xcode .mobileprovision file be ‘installed’ from the command line?
If you don’t want to download external dependencies (like Ben did), the following should work in most cases: uuid=`grep UUID -A1 -a adhoc.mobileprovision | grep -io “[-A-F0-9]\{36\}”` cp adhoc.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/$uuid.mobileprovision Note that a UUID is composed of hexadecimal digits so the correct range is [-A-F0-9] and not [-A-Z0-9]. Bonus: Download and install profiles Using … Read more
change xcrun developer path for Android Studio/IntelliJ
I ran into the same problem, however with svn. I found that by installing El Capitan, Xcode was “uninstalled”. I reinstalled Xcode from the App Store and then reinstalled Xcode Command Line Tools via Terminal with xcode-select –install After installation, my /Library/Developer/CommandLineTools/usr/bin directory reappeared and svn started working again.
Invalid active developer path on MAC OS X after installing Ruby
I started getting the same error after updating to OS X El Capitan. In my case, all I did was to install it: sudo xcode-select –install And it works fine for me.
Better way of incrementing build number?
I’ve messed around with a lot of the answers on this question, and none of them quite satisfied me. However, I finally came up with a mixture that I really like! We simply set the version number for the built product to the number of Git commits. This won’t mess with your source control, since … Read more
How do I fix the xcrun unable to find simctl error?
I solved this problem by entering Xcode > Preferences > Locations And assigning the Command Line Tools This is in Xcode Version 7.2 beta (7C46t)
xcrun: error: active developer path (“/Applications/Xcode.app/Contents/Developer”) does not exist
I tried that and it didn’t work but I found the answer. I just had to reset the developer’s path: $ sudo xcode-select –reset Now everything is normal