upd: ios dan android install

This commit is contained in:
2025-07-23 17:31:28 +08:00
parent 7f5b804224
commit 573c7f20d6
14 changed files with 5679 additions and 31 deletions

View File

@@ -8,6 +8,7 @@ ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '
ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1'
use_modular_headers!
install! 'cocoapods',
:deterministic_uuids => false
@@ -58,9 +59,16 @@ target 'mobiledarmasaba' do
.each do |pod_name, target_installation_result|
target_installation_result.resource_bundle_targets.each do |resource_bundle_target|
resource_bundle_target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
config.build_settings['CODE_SIGNING_ALLOWED'] = 'YES'
end
end
end
# tambahan
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end