Podfile 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. platform :ios, '9.0'
  2. target 'RNPermissionsExample' do
  3. pod 'React', :path => '../node_modules/react-native', :subspecs => [
  4. 'Core',
  5. 'CxxBridge', # Include this for RN >= 0.47
  6. 'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43
  7. 'RCTActionSheet',
  8. 'RCTAnimation', # Needed for FlatList and animations running on native UI thread
  9. 'RCTBlob',
  10. # 'RCTCameraRoll',
  11. 'RCTGeolocation',
  12. 'RCTImage',
  13. 'RCTNetwork',
  14. 'RCTPushNotification',
  15. 'RCTSettings',
  16. 'RCTText',
  17. 'RCTVibration',
  18. 'RCTWebSocket', # Needed for debugging
  19. 'RCTLinkingIOS',
  20. ]
  21. # Explicitly include Yoga if you are using RN >= 0.42.0
  22. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  23. # Third party deps podspec link
  24. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  25. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  26. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  27. # RN dependencies
  28. pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  29. pod 'RNPermissions', :path => '../node_modules/react-native-permissions', :subspecs => [
  30. 'Core',
  31. # Comment unwanted permissions
  32. 'BluetoothPeripheral',
  33. 'Calendars',
  34. 'Camera',
  35. 'Contacts',
  36. 'FaceID',
  37. 'LocationAlways',
  38. 'LocationWhenInUse',
  39. 'MediaLibrary',
  40. 'Microphone',
  41. 'Motion',
  42. 'Notifications',
  43. 'PhotoLibrary',
  44. 'Reminders',
  45. # 'Siri',
  46. 'SpeechRecognition',
  47. 'StoreKit',
  48. ]
  49. end
  50. target 'RNPermissionsExample-tvOS' do
  51. end