Created
March 22, 2019 13:27
-
-
Save savelichalex/082a34bdbe5a3cf8d2166a195f596f0c 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
platform :ios, '9.1' | |
abstract_target 'Foo' do | |
# RN related | |
pod 'React', :path => '../node_modules/react-native', :subspecs => [ | |
'Core', | |
'CxxBridge', | |
'RCTAnimation', | |
'RCTBlob', | |
'RCTText', | |
'RCTNetwork', | |
'RCTWebSocket', | |
'RCTImage', | |
'RCTLinkingIOS', | |
'DevSupport', | |
] | |
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' | |
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' | |
# Third party | |
pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler' | |
pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient' | |
pod 'RNSVG', :path => '../node_modules/react-native-svg' | |
pod 'react-native-sensitive-info', :path => '../node_modules/react-native-sensitive-info' | |
# Self-writed common code | |
pod 'FooKit', :path => './AdempassKit' | |
target 'baz' do | |
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks | |
# use_frameworks! | |
# Pods for baz | |
end | |
end | |
ENV['COCOAPODS_DISABLE_STATS'] = 'true' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment