Skip to content

Instantly share code, notes, and snippets.

@savelichalex
Created March 22, 2019 13:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save savelichalex/082a34bdbe5a3cf8d2166a195f596f0c to your computer and use it in GitHub Desktop.
Save savelichalex/082a34bdbe5a3cf8d2166a195f596f0c to your computer and use it in GitHub Desktop.
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