Edward Potter
Edward Potter

Reputation: 3820

Simple cocoapods install bug with OAuth2

This seems like a super simple pod install, yet I'm getting this strange error. Just don't see what's wrong here.

Podfile

# platform :ios, '9.0'

target 'iLook-990' do
 use_frameworks!

 pod 'OAuthSwift', '~> 1.0.0'

end

Error message:

[!] Unable to satisfy the following requirements:

Upvotes: 0

Views: 124

Answers (1)

Idelfonso Gutierrez
Idelfonso Gutierrez

Reputation: 320

if that's the exact same text from the Podfile, you need to remove the # from the first line

platform :ios, '9.0'

target 'iLook-990' do
 use_frameworks!

 pod 'OAuthSwift', '~> 1.0.0'

end

Upvotes: 1

Related Questions