| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- platform :ios, '9.0'
 - 
 - target 'RNPermissionsExample' do
 -   pod 'React', :path => '../node_modules/react-native', :subspecs => [
 -     'Core',
 -     'CxxBridge', # Include this for RN >= 0.47
 -     'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43
 -     'RCTActionSheet',
 -     'RCTAnimation', # Needed for FlatList and animations running on native UI thread
 -     'RCTBlob',
 -     # 'RCTCameraRoll',
 -     'RCTGeolocation',
 -     'RCTImage',
 -     'RCTNetwork',
 -     'RCTPushNotification',
 -     'RCTSettings',
 -     'RCTText',
 -     'RCTVibration',
 -     'RCTWebSocket', # Needed for debugging
 -     'RCTLinkingIOS',
 -   ]
 - 
 -   # Explicitly include Yoga if you are using RN >= 0.42.0
 -   pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
 - 
 -   # Third party deps podspec link
 -   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'
 - 
 -   # RN dependencies
 -   pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
 - 
 -   pod 'RNPermissions', :path => '../node_modules/react-native-permissions', :subspecs => [
 -     'Core',
 -     # Comment unwanted permissions
 -     'BluetoothPeripheral',
 -     'Calendars',
 -     'Camera',
 -     'Contacts',
 -     'FaceID',
 -     'LocationAlways',
 -     'LocationWhenInUse',
 -     'MediaLibrary',
 -     'Microphone',
 -     'Motion',
 -     'Notifications',
 -     'PhotoLibrary',
 -     'Reminders',
 -     # 'Siri',
 -     'SpeechRecognition',
 -     'StoreKit',
 -   ]
 - end
 - 
 - target 'RNPermissionsExample-tvOS' do
 - end
 
 
  |