Last active
August 30, 2019 12:02
-
-
Save deepslam/8615be60d4ffa1fe1f7916a406ab901b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Uncomment the next line to define a global platform for your project | |
platform :ios, '9.0' | |
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' | |
target 'MyApp' do | |
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks | |
# use_frameworks! | |
# Pods for HelloEnglish | |
# Your 'node_modules' directory is probably in the root of your project, | |
# but if not, adjust the `:path` accordingly | |
pod 'React', :path => '../node_modules/react-native/' | |
pod 'React-Core', :path => '../node_modules/react-native/React' | |
pod 'React-DevSupport', :path => '../node_modules/react-native/React' | |
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS' | |
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation' | |
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob' | |
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image' | |
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS' | |
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network' | |
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings' | |
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text' | |
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration' | |
#pod 'React-RCTPushNotification', :path => '../node_modules/react-native/Libraries/PushNotificationIOS' | |
pod 'React-RCTWebSocket', :path => '../node_modules/react-native/Libraries/WebSocket' | |
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact' | |
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi' | |
pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor' | |
pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector' | |
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' | |
# Third party deps podspec link | |
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 'react-native-sqlite-storage', :path => '../node_modules/react-native-sqlite-storage' | |
pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage' | |
pod 'ReactNativeSearchBar', :path => '../node_modules/react-native-search-bar' | |
pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen' | |
pod 'RNSound', :path => '../node_modules/react-native-sound' | |
#pod 'RCTSystemSetting', :path => '../node_modules/react-native-system-setting' | |
pod 'TextToSpeech', :path => '../node_modules/react-native-tts' | |
pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info' | |
pod 'RNFS', :path => '../node_modules/react-native-fs' | |
pod 'ReactNativeStoreView', :path => '../node_modules/react-native-store-view' | |
pod 'RNIap', :path => '../node_modules/react-native-iap' | |
pod 'react-native-blur', :path => '../node_modules/react-native-blur' | |
pod 'RNRate', :path => '../node_modules/react-native-rate/ios' | |
pod 'RNStoreReview', :path => '../node_modules/react-native-store-review/ios' | |
pod 'RNI18n', :path => '../node_modules/react-native-i18n' | |
pod 'RCTRestart', :path => '../node_modules/react-native-restart/ios' | |
pod 'react-native-safe-area', path: '../node_modules/react-native-safe-area' | |
pod 'react-native-voice', :path => '../node_modules/react-native-voice' | |
#pod 'PushNotificationIOS', :path => '../node_modules/@react-native-community/push-notification-ios' | |
use_native_modules!("../") | |
target 'MyAppTests' do | |
inherit! :search_paths | |
# Pods for testing | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment