mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 04:24:56 -06:00
65 lines
1.8 KiB
Ruby
65 lines
1.8 KiB
Ruby
# Uncomment the next line to define a global platform for your project
|
|
# platform :ios, '9.0'
|
|
|
|
source 'https://github.com/CocoaPods/Specs.git'
|
|
|
|
# target 'AreThereCookies' do
|
|
# # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
|
|
# # use_frameworks!
|
|
|
|
# # Pods for AreThereCookies
|
|
# pod 'GooglePlaces', '~> 3.0'
|
|
# pod 'GoogleMaps', '~> 3.0'
|
|
# pod 'GooglePlacePicker', '~> 3.0'
|
|
|
|
# target 'AreThereCookiesTests' do
|
|
# inherit! :search_paths
|
|
# # Pods for testing
|
|
# end
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
target 'AreThereCookies' do
|
|
|
|
# Pods for _YOUR_PROJECT_TARGET_
|
|
pod 'React', :path => '../node_modules/react-native', :subspecs => [
|
|
'Core',
|
|
'CxxBridge',
|
|
'DevSupport',
|
|
'RCTText',
|
|
'RCTImage',
|
|
'RCTNetwork',
|
|
'RCTWebSocket',
|
|
'RCTSettings',
|
|
'RCTAnimation',
|
|
'RCTLinkingIOS',
|
|
# Add any other subspecs you want to use in your project
|
|
# Remove any subspecs you don't want to use in your project
|
|
]
|
|
|
|
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'
|
|
# This should already be auto-added for you, if not add the line below
|
|
pod 'react-native-google-places', :path => '../node_modules/react-native-google-places'
|
|
|
|
end
|
|
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
if target.name == 'react-native-google-places'
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['CLANG_ENABLE_MODULES'] = 'No'
|
|
end
|
|
end
|
|
if target.name == "React"
|
|
target.remove_from_project
|
|
end
|
|
end
|
|
end
|