-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
38 lines (34 loc) · 1.46 KB
/
Podfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
platform :ios, '9.0'
target 'trucker' do
pod 'React', path: '../node_modules/react-native', subspecs: [
'Core',
'CxxBridge',
'RCTText',
'RCTNetwork',
'RCTWebSocket',
'RCTImage',
'DevSupport',
'RCTAnimation',
'RCTActionSheet',
'RCTLinkingIOS',
]
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'
pod 'RNDevMenu', :path => '../node_modules/react-native-dev-menu'
pod 'ReactNativeLocalization', :path => '../node_modules/react-native-localization'
pod 'BugsnagReactNative', :path => '../node_modules/bugsnag-react-native'
pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler'
pod 'react-native-async-storage', :path => '../node_modules/@react-native-community/async-storage'
pod 'rn-fetch-blob', :path => '../node_modules/rn-fetch-blob'
pod 'react-native-geolocation', :path => '../node_modules/@react-native-community/geolocation'
pod 'RNPermissions', :path => '../node_modules/react-native-permissions'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "React"
target.remove_from_project
end
end
end