2018-11-19 12:44:58 +03:00
|
|
|
# Uncomment the next line to define a global platform for your project
|
|
|
|
# platform :ios, '9.0'
|
|
|
|
|
2018-11-19 21:54:44 +03:00
|
|
|
target 'eSteem' do
|
2018-12-02 13:39:25 +03:00
|
|
|
pod 'AppCenter/Push', '~> 1.11.0'
|
|
|
|
pod 'AppCenter/Crashes', '~> 1.11.0'
|
|
|
|
pod 'AppCenter/Analytics', '~> 1.11.0'
|
|
|
|
pod 'AppCenterReactNativeShared', '~> 1.10.0'
|
2018-11-19 12:44:58 +03:00
|
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
|
|
# use_frameworks!
|
|
|
|
|
2018-11-19 21:54:44 +03:00
|
|
|
# Pods for eSteem
|
2018-11-28 10:38:54 +03:00
|
|
|
pod 'React', :path => '../node_modules/react-native', :subspecs => [
|
2018-12-05 12:29:49 +03:00
|
|
|
'Core',
|
|
|
|
'CxxBridge', # Include this for RN >= 0.47
|
|
|
|
'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43
|
|
|
|
'RCTText',
|
|
|
|
'RCTNetwork',
|
|
|
|
'RCTWebSocket', # Needed for debugging
|
|
|
|
'RCTAnimation', # Needed for FlatList and animations running on native UI thread
|
|
|
|
'RCTImage',
|
2018-11-28 10:38:54 +03:00
|
|
|
]
|
|
|
|
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
|
2018-12-05 12:29:49 +03:00
|
|
|
|
|
|
|
# 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'
|
2018-11-19 12:44:58 +03:00
|
|
|
|
2018-12-04 14:28:56 +03:00
|
|
|
platform :ios, '9.0'
|
2018-11-28 00:22:44 +03:00
|
|
|
pod 'RNImageCropPicker', :path => '../node_modules/react-native-image-crop-picker'
|
|
|
|
|
2018-11-19 21:54:44 +03:00
|
|
|
target 'eSteemTests' do
|
2018-11-19 12:44:58 +03:00
|
|
|
inherit! :search_paths
|
|
|
|
# Pods for testing
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-11-19 21:54:44 +03:00
|
|
|
target 'eSteem-tvOS' do
|
2018-11-19 12:44:58 +03:00
|
|
|
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
|
|
# use_frameworks!
|
|
|
|
|
2018-11-19 21:54:44 +03:00
|
|
|
# Pods for eSteem-tvOS
|
2018-11-19 12:44:58 +03:00
|
|
|
|
2018-11-19 21:54:44 +03:00
|
|
|
target 'eSteem-tvOSTests' do
|
2018-11-19 12:44:58 +03:00
|
|
|
inherit! :search_paths
|
|
|
|
# Pods for testing
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|