Reputation: 3019
I'm porting an iOS game to tvOS (Unity game). I have this annoying warning that I can't get rid of. Whenever I click on "Update to recommended settings" it pops up a window saying "Project settings are valid". The warning's still there.
(Never mind the other warnings :D)
Things I've tried: Clean>Rebuild the project, restart Xcode
Any ideas?
Upvotes: 36
Views: 21711
Reputation: 357
If you're using Cocoapods and the warnings are related to your Pods, updating to the latest version of Cocoapods before you update your pods can resolve these recommended settings warnings.
1. Upgrade to the latest version of Cocoapods
sudo gem install cocoapods
Or, if you use Homebrew:
brew upgrade cocoapods
Or, if you use Bundler:
bundle update cocoapods
2. Update your pods
pod update
Upvotes: 0
Reputation: 2530
I found that closing the project, quitting Xcode, restarting Xcode and re-opening the project worked for me. Xcode 8.1 (8B62)
Upvotes: 32