-
-
Save DenisDov/903487ab9b012214ff9eb1c7d8dc383d 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