2020-07-20 16:35:17 +00:00
|
|
|
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
2019-08-07 13:51:34 +00:00
|
|
|
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
2022-08-08 21:02:08 +00:00
|
|
|
require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking")
|
|
|
|
|
2023-08-18 17:48:33 +00:00
|
|
|
platform :ios, '12.0'
|
|
|
|
install! 'cocoapods', :deterministic_uuids => false
|
2019-06-21 16:39:20 +00:00
|
|
|
|
2020-07-20 16:35:17 +00:00
|
|
|
def all_pods
|
2021-10-01 20:35:13 +00:00
|
|
|
pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi', :modular_headers => true
|
|
|
|
pod 'simdjson', path: '../node_modules/@nozbe/simdjson'
|
2022-08-08 21:02:08 +00:00
|
|
|
$RNFirebaseAnalyticsWithoutAdIdSupport = true
|
2020-07-20 16:35:17 +00:00
|
|
|
config = use_native_modules!
|
2022-08-08 21:02:08 +00:00
|
|
|
|
|
|
|
use_expo_modules!
|
|
|
|
post_integrate do |installer|
|
|
|
|
begin
|
|
|
|
expo_patch_react_imports!(installer)
|
|
|
|
rescue => e
|
|
|
|
Pod::UI.warn e
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
flags = get_default_flags()
|
|
|
|
|
2021-07-21 15:50:39 +00:00
|
|
|
use_react_native!(
|
|
|
|
:path => config[:reactNativePath],
|
2023-08-18 17:48:33 +00:00
|
|
|
:hermes_enabled => true, # flags[:hermes_enabled],
|
|
|
|
:fabric_enabled => flags[:fabric_enabled],
|
2022-08-08 21:02:08 +00:00
|
|
|
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
2021-07-21 15:50:39 +00:00
|
|
|
)
|
2023-08-18 17:48:33 +00:00
|
|
|
|
|
|
|
# Enable and run pods again, if you want to use Flipper
|
|
|
|
# use_flipper!()
|
2020-05-08 16:37:49 +00:00
|
|
|
end
|
|
|
|
|
2021-01-05 16:23:20 +00:00
|
|
|
abstract_target 'defaults' do
|
2020-11-03 14:18:15 +00:00
|
|
|
|
2020-07-20 16:35:17 +00:00
|
|
|
all_pods
|
2021-01-05 16:23:20 +00:00
|
|
|
|
|
|
|
target 'RocketChatRN' # Experimental app
|
|
|
|
target 'Rocket.Chat' # Official app
|
2021-08-20 19:54:59 +00:00
|
|
|
target 'ShareRocketChatRN'
|
|
|
|
target 'NotificationService'
|
2020-08-19 17:14:22 +00:00
|
|
|
end
|
|
|
|
|
2018-07-26 14:23:06 +00:00
|
|
|
post_install do |installer|
|
2023-08-18 17:48:33 +00:00
|
|
|
react_native_post_install(installer)
|
2022-08-08 21:02:08 +00:00
|
|
|
|
2018-07-26 14:23:06 +00:00
|
|
|
installer.pods_project.targets.each do |target|
|
2019-08-07 13:51:34 +00:00
|
|
|
target.build_configurations.each do |config|
|
|
|
|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO'
|
2023-01-20 16:55:53 +00:00
|
|
|
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
|
|
|
|
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
|
|
|
|
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
|
2023-08-18 17:48:33 +00:00
|
|
|
case target.name
|
|
|
|
when 'RCT-Folly'
|
|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
|
|
|
|
else
|
|
|
|
config.build_settings.delete('IPHONEOS_DEPLOYMENT_TARGET')
|
|
|
|
end
|
2018-07-26 14:23:06 +00:00
|
|
|
end
|
|
|
|
end
|
2021-07-28 20:36:06 +00:00
|
|
|
end
|