Podfile 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. platform :ios, '9.0'
  2. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3. target 'RNPermissionsExample' do
  4. pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
  5. pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
  6. pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
  7. pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
  8. pod 'React', :path => '../node_modules/react-native/'
  9. pod 'React-Core', :path => '../node_modules/react-native/'
  10. pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
  11. pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
  12. pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  13. pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  14. pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  15. pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  16. pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  17. pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  18. pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  19. pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  20. pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  21. pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
  22. pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  23. pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  24. pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  25. pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  26. pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
  27. pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
  28. pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  29. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  30. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  31. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  32. permissions_path = '../node_modules/react-native-permissions/ios'
  33. pod 'Permission-BluetoothPeripheral', :path => "#{permissions_path}/BluetoothPeripheral.podspec"
  34. pod 'Permission-Calendars', :path => "#{permissions_path}/Calendars.podspec"
  35. pod 'Permission-Camera', :path => "#{permissions_path}/Camera.podspec"
  36. pod 'Permission-Contacts', :path => "#{permissions_path}/Contacts.podspec"
  37. pod 'Permission-FaceID', :path => "#{permissions_path}/FaceID.podspec"
  38. pod 'Permission-LocationAlways', :path => "#{permissions_path}/LocationAlways.podspec"
  39. pod 'Permission-LocationWhenInUse', :path => "#{permissions_path}/LocationWhenInUse.podspec"
  40. pod 'Permission-MediaLibrary', :path => "#{permissions_path}/MediaLibrary.podspec"
  41. pod 'Permission-Microphone', :path => "#{permissions_path}/Microphone.podspec"
  42. pod 'Permission-Motion', :path => "#{permissions_path}/Motion.podspec"
  43. pod 'Permission-Notifications', :path => "#{permissions_path}/Notifications.podspec"
  44. pod 'Permission-PhotoLibrary', :path => "#{permissions_path}/PhotoLibrary.podspec"
  45. pod 'Permission-Reminders', :path => "#{permissions_path}/Reminders.podspec"
  46. # pod 'Permission-Siri', :path => "#{permissions_path}/Siri.podspec"
  47. pod 'Permission-SpeechRecognition', :path => "#{permissions_path}/SpeechRecognition.podspec"
  48. pod 'Permission-StoreKit', :path => "#{permissions_path}/StoreKit.podspec"
  49. use_native_modules!
  50. end