Skip to content

Instantly share code, notes, and snippets.

@alfonsodev
Created October 16, 2017 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfonsodev/4ad4798cc5305afdaa18dd4e2287beba to your computer and use it in GitHub Desktop.
Save alfonsodev/4ad4798cc5305afdaa18dd4e2287beba to your computer and use it in GitHub Desktop.
Podfile for reac-native-firebase issue report
source 'https://github.com/CocoaPods/Specs.git'
project 'MyApp.xcodeproj'
platform :ios, '9.0'
plugin 'cocoapods-keys', {
:project => 'MyApp',
:keys => [
"MixPanelToken",
]
}
target 'MyApp' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for MyApp
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
# Third party deps
pod 'React', :path => '../node_modules/react-native' , :subspecs => [
'ART',
'BatchedBridge',
'Core',
'RCTWebSocket',
'DevSupport',
'RCTGeolocation',
'RCTCameraRoll',
'RCTText',
'RCTAnimation',
'RCTActionSheet',
'RCTLinkingIOS'
]
pod 'Mixpanel'
pod 'Fabric'
pod 'Crashlytics'
# Required by RNFirebase
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Storage'
pod 'Firebase/Messaging'
pod 'RNFirebase', :path => '../node_modules/react-native-firebase'
# Required by Facbeook
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'
pod 'CodePush', :path => '../node_modules/react-native-code-push'
pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info'
pod 'RCTMapboxGL', :path => '../node_modules/react-native-mapbox-gl/ios'
pod 'ReactNativeLocalization', :path => '../node_modules/react-native-localization'
pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient'
pod 'RNFS', :path => '../node_modules/react-native-fs'
pod 'RCTMapboxGL', :path => '../node_modules/react-native-mapbox-gl/ios'
pod 'ReactNativePermissions', :path => '../node_modules/react-native-permissions'
pod 'react-native-mixpanel', :path => '../node_modules/react-native-mixpanel'
pod 'RNSound', :path => '../node_modules/react-native-sound'
pod 'react-native-audio', :path => '../node_modules/react-native-audio'
pod 'ReactNativeNavigation', :path => '../node_modules/react-native-navigation'
pod 'react-native-fbsdk', :path => '../node_modules/react-native-fbsdk/ios', :subspecs => [
'Core',
'Login',
'Share'
]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment