Created
October 16, 2017 12:22
-
-
Save alfonsodev/4ad4798cc5305afdaa18dd4e2287beba to your computer and use it in GitHub Desktop.
Podfile for reac-native-firebase issue report
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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