Skip to content

Instantly share code, notes, and snippets.

@DenisDov
Forked from savelichalex/Podfile
Created April 22, 2019 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DenisDov/903487ab9b012214ff9eb1c7d8dc383d to your computer and use it in GitHub Desktop.
Save DenisDov/903487ab9b012214ff9eb1c7d8dc383d 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