Skip to content

Instantly share code, notes, and snippets.

@thiagoferolla
Created July 8, 2019 21:29
Show Gist options
  • Save thiagoferolla/166f4ba8917bc2fd5d809d0b11c4d72e to your computer and use it in GitHub Desktop.
Save thiagoferolla/166f4ba8917bc2fd5d809d0b11c4d72e to your computer and use it in GitHub Desktop.
Podfile for a React Native project with build error in iOS: `Could not get GOOGLE_APP_ID in Google Services file from build environment`
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'MyApp' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# Pods for MyApp
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge',
'DevSupport',
'RCTText',
'RCTNetwork',
'RCTWebSocket',
'RCTAnimation',
'RCTVibration',
'RCTBlob',
'RCTCameraRoll',
'RCTSettings',
'RCTGeolocation',
'RCTLinkingIOS',
'RCTActionSheet'
]
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'GoogleSignIn', '~> 4.4.0'
pod 'Firebase/Core', '~> 6.2.0'
pod 'Firebase/Auth', '~> 6.2.0'
pod 'Firebase/Database', '~> 6.2.0'
pod 'Firebase/Messaging', '~> 6.2.0'
pod 'Firebase/DynamicLinks', '~> 6.2.0'
pod 'Firebase/Storage', '~> 6.2.0'
pod 'Firebase/Firestore', '~> 6.2.0'
pod 'Firebase/Performance', '~> 6.2.0'
pod 'Firebase/RemoteConfig', '~> 6.2.0'
pod 'Firebase/InAppMessagingDisplay', '~> 6.2.0'
pod 'Fabric', '~> 1.10.1'
pod 'Crashlytics', '~> 3.13.1'
# Add new pods below this line
pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
pod 'react-native-fbsdk', :path => '../node_modules/react-native-fbsdk'
pod 'react-native-fast-image', :path => '../node_modules/react-native-fast-image'
pod 'RNFirebase', :path => '../node_modules/react-native-firebase/ios'
pod 'RNBackgroundFetch', :path => '../node_modules/react-native-background-fetch'
pod 'CodePush', :path => '../node_modules/react-native-code-push'
pod 'lottie-react-native', :path => '../node_modules/lottie-react-native'
pod 'lottie-ios', :path => '../node_modules/lottie-ios'
pod 'RNGoogleSignin', :path => '../node_modules/react-native-google-signin'
pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
pod 'RNShare', :path => '../node_modules/react-native-share'
pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen'
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler'
pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info'
pod 'RNQuickAction', :path => '../node_modules/react-native-quick-actions'
pod 'react-native-webview', :path => '../node_modules/react-native-webview'
pod 'RNStoreReview', :path => '../node_modules/react-native-store-review/ios'
pod 'RNSVG', :path => '../node_modules/react-native-svg'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment