Podfile 1.8KB

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