Reputation: 1
I just downloaded xCode 7 Beta 5. One of the main reasons is some extra features that I'll need with auto layout. I need to use CocoaPods for my project and it give me errors even though that it used to work in the past. I even tried creating a new project and installing CocoaPods to it, it gave me 34 warnings all of which are in the libraries themselves.
FYI the libraries that I'm using are:
These are the libraries that are causing the warnings:
Upvotes: 0
Views: 155
Reputation: 982
pod update
and add this to the top of your podfile
source 'https://github.com/CocoaPods/Specs.git'
Upvotes: 0