ecency-mobile/ios/Podfile

82 lines
2.4 KiB
Plaintext
Raw Normal View History

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '9.0'
2018-11-19 21:54:44 +03:00
target 'eSteem' do
2019-05-10 06:04:18 +03:00
pod 'AppCenter/Push', '~> 1.14.0'
pod 'AppCenter/Crashes', '~> 1.14.0'
pod 'AppCenter/Analytics', '~> 1.14.0'
pod 'AppCenterReactNativeShared', '~> 1.13.0'
# 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
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge', # Include this for RN >= 0.47
"RCTActionSheet",
"RCTAnimation",
"RCTCameraRoll",
"RCTWebSocket",
"DevSupport",
'RCTText',
'RCTNetwork',
'RCTImage',
]
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'
2018-11-28 00:22:44 +03:00
pod 'RNImageCropPicker', :path => '../node_modules/react-native-image-crop-picker'
2018-12-10 11:17:32 +03:00
pod 'react-native-fast-image', :path => '../node_modules/react-native-fast-image'
2019-01-04 12:16:09 +03:00
pod 'CodePush', :path => '../node_modules/react-native-code-push'
2019-01-20 00:24:46 +03:00
pod 'react-native-version-number', :path => '../node_modules/react-native-version-number'
2019-05-14 23:14:18 +03:00
2018-11-19 21:54:44 +03:00
target 'eSteemTests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
# The following is needed to ensure the "archive" step works in XCode.
# It removes React & Yoga from the Pods project, as it is already included in the main project.
# Without this, you'd see errors when you archive like:
# "Multiple commands produce ... libReact.a"
# "Multiple commands produce ... libyoga.a"
targets_to_ignore = %w(React yoga)
if targets_to_ignore.include? target.name
target.remove_from_project
end
2019-01-28 16:54:50 +03:00
if target.name == "React"
target.remove_from_project
end
end
end
2018-11-19 21:54:44 +03:00
target 'eSteem-tvOS' do
# 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 21:54:44 +03:00
target 'eSteem-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end