7

My nativescript project won't run, getting the error mentioned above. The Xcode command Line Tools is set.

Things i tried but didn't fix the problem:

sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
sudo xcode-select --reset
ns doctor ios

As you might have guessed, I have Xcode installed from the app store and I've also installed cocoapods and xcodeproj. This is the only warning that I get.

Any suggestions?

https://i.stack.imgur.com/byIaE.png

https://i.stack.imgur.com/TehVB.png

Charly
  • 83
  • 1
  • 8

2 Answers2

15

Much like the cocoapods install, I had to direct where xcodeproj needed to be installed.

After running this:

sudo gem install -n /usr/local/bin xcodeproj

The issue resolved.

David
  • 186
  • 1
  • 7
2

Didn't work for me. Following your suggestion I tried:

sudo gem uninstall cocoapods
sudo gem install -n /usr/local/bin cocoapods

And it worked. I also had to run:

sudo xcode-select -s /Applications/Xcode.app/Contents/Developer

In order to get rid of the "WARNING: Xcode is not installed or is not configured properly."

Mac OS 13.1 Ventura, M1, Xcode 14.2, tns 8.4.0

Slawek
  • 21
  • 1