No Description

Podfile 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '8.0'
  3. target 'campus' do
  4. # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  5. # use_frameworks!
  6. # Pods for campus
  7. # this is very important to have!
  8. rn_path = '../node_modules/react-native'
  9. pod 'yoga', path: "#{rn_path}/ReactCommon/yoga/yoga.podspec"
  10. pod 'React', path: rn_path, subspecs: [
  11. 'Core',
  12. 'RCTActionSheet',
  13. 'RCTAnimation',
  14. 'RCTGeolocation',
  15. 'RCTImage',
  16. 'RCTLinkingIOS',
  17. 'RCTNetwork',
  18. 'RCTSettings',
  19. 'RCTText',
  20. 'RCTVibration',
  21. 'RCTWebSocket'
  22. ]
  23. pod 'AliyunOSSiOS'
  24. pod 'RNImageCropPicker', :path => '../node_modules/react-native-image-crop-picker'
  25. pod 'react-native-image-picker', :path => '../node_modules/react-native-image-picker'
  26. pod 'react-native-blur', :path => '../node_modules/react-native-blur'
  27. end
  28. # very important to have, unless you removed React dependencies for Libraries
  29. # and you rely on Cocoapods to manage it
  30. post_install do |installer|
  31. installer.pods_project.targets.each do |target|
  32. if target.name == "React"
  33. target.remove_from_project
  34. end
  35. end
  36. end