WARNING: xcodeproj is not installed or is not configured properly

Question:

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

Answers:

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.

Answered By: David

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

Answered By: Slawek
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.