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

1

5

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!

Rijeka answered 4/10, 2016 at 19:23 Comment(0)
R
12

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

It should look like this:

target 'myApp' do

  pod 'Flurry-iOS-SDK/FlurrySDK'

end
Rijeka answered 4/10, 2016 at 19:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.