Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CocoaPods error while doing "pod install": [!] Invalid `Podfile` file: uninitialized constant Pod::Podfile::Flurry.

I am trying to install Flurry for React Native using the npm React Native Flurry Analytics

Here is my pod file:

target 'myApp' do

  pod Flurry-iOS-SDK/FlurrySDK

end

and running pod install in the /ios directory of my React-Native project i get:

[!] Invalid `Podfile` file: uninitialized constant Pod::Podfile::Flurry.

Thanks in advance!

like image 694
Michael Campsall Avatar asked Oct 04 '16 19:10

Michael Campsall


1 Answers

I needed quotes around Flurry-iOS-SDK/FlurrySDK.

It should look like this:

target 'myApp' do

  pod 'Flurry-iOS-SDK/FlurrySDK'

end
like image 187
Michael Campsall Avatar answered Oct 06 '22 02:10

Michael Campsall