54 lines
1.4 KiB
Ruby
54 lines
1.4 KiB
Ruby
def node_require(script)
|
|
# Resolve script with node to allow for hoisting
|
|
require Pod::Executable.execute_command('node', ['-p',
|
|
"require.resolve(
|
|
'#{script}',
|
|
{paths: [process.argv[1]]},
|
|
)", __dir__]).strip
|
|
end
|
|
# require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
node_require('react-native/scripts/react_native_pods.rb')
|
|
node_require('react-native-permissions/scripts/setup.rb')
|
|
|
|
platform :ios, '13.0'
|
|
|
|
setup_permissions([
|
|
# 'AppTrackingTransparency',
|
|
# 'Bluetooth',
|
|
# 'Calendars',
|
|
# 'CalendarsWriteOnly',
|
|
'Camera',
|
|
# 'Contacts',
|
|
# 'FaceID',
|
|
'LocationAccuracy',
|
|
'LocationAlways',
|
|
'LocationWhenInUse',
|
|
'MediaLibrary',
|
|
# 'Microphone',
|
|
'Motion',
|
|
'Notifications',
|
|
'PhotoLibrary',
|
|
'PhotoLibraryAddOnly',
|
|
# 'Reminders',
|
|
# 'Siri',
|
|
# 'SpeechRecognition',
|
|
# 'StoreKit',
|
|
])
|
|
|
|
xcodeproj 'csareactrn60'
|
|
|
|
target 'csareactrn60' do
|
|
config = use_native_modules!
|
|
|
|
use_react_native!(
|
|
:path => config[:reactNativePath],
|
|
# to enable hermes on iOS, change `false` to `true` and then install pods
|
|
:hermes_enabled => false
|
|
)
|
|
|
|
pod 'Firebase', :modular_headers => true
|
|
pod 'FirebaseCoreInternal', :modular_headers => true
|
|
pod 'FirebaseCore', :modular_headers => true
|
|
pod 'GoogleUtilities', :modular_headers => true
|
|
end |