80 lines
2.9 KiB
Ruby
80 lines
2.9 KiB
Ruby
ENV['EXPO_USE_FRAMEWORKS'] = '1'
|
|
require 'json'
|
|
|
|
expo_autolinking_script = File.join(File.dirname(%x(node --print "require.resolve('expo/package.json')").strip), "scripts", "autolinking")
|
|
require expo_autolinking_script if File.exist?(expo_autolinking_script)
|
|
|
|
require File.join(File.dirname(%x(node --print "require.resolve('react-native/package.json')").strip), "scripts", "react_native_pods")
|
|
|
|
podfile_properties = JSON.parse(File.read(File.join(__dir__, 'Podfile.properties.json'))) rescue {}
|
|
|
|
platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1'
|
|
|
|
install! 'cocoapods',
|
|
:deterministic_uuids => false,
|
|
:generate_multiple_pod_projects => true,
|
|
:incremental_installation => true
|
|
|
|
prepare_react_native_project!
|
|
|
|
config = nil
|
|
|
|
target 'mobiledarmasaba' do
|
|
# ✅ Hapus autolinking manual jika sebelumnya ada
|
|
# require_relative '../node_modules/expo-modules-core/scripts/autolinking'
|
|
# use_expo_modules!
|
|
|
|
config = use_native_modules! do |c|
|
|
use_flipper!({ 'Flipper' => '0.182.0' })
|
|
end
|
|
|
|
use_react_native!(
|
|
:path => config[:reactNativePath],
|
|
:hermes_enabled => podfile_properties['expo.jsEngine'].nil? || podfile_properties['expo.jsEngine'] == 'hermes',
|
|
:app_path => "#{Pod::Config.instance.installation_root}/..",
|
|
:privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] != 'false',
|
|
)
|
|
|
|
# ✅ Modular headers fix untuk Firebase, dsb.
|
|
pod 'FirebaseDatabase', :modular_headers => true
|
|
pod 'FirebaseCore', :modular_headers => true
|
|
pod 'FirebaseAppCheckInterop', :modular_headers => true
|
|
pod 'leveldb-library', :modular_headers => true
|
|
pod 'GoogleUtilities', :modular_headers => true
|
|
end
|
|
|
|
post_install do |installer|
|
|
# (Optional fix) remove bad script
|
|
system("rm -rf Pods/Target\\ Support\\ Files/Pods-mobiledarmasaba/expo-configure-project.sh")
|
|
|
|
react_native_post_install(
|
|
installer,
|
|
config[:reactNativePath],
|
|
:mac_catalyst_enabled => false,
|
|
:ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true',
|
|
)
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
# ✅ Critical for Expo Swift modules
|
|
config.build_settings['CLANG_ENABLE_MODULES'] = 'YES'
|
|
config.build_settings['DEFINES_MODULE'] = 'YES'
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.1'
|
|
config.build_settings['GCC_TREAT_WARNINGS_AS_ERRORS'] = 'NO'
|
|
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
|
|
config.build_settings['SWIFT_VERSION'] = '5.0'
|
|
end
|
|
|
|
# Avoid duplicate module map error
|
|
if ['ReactCommon', 'react_runtime'].include?(target.name)
|
|
target.module_map = nil if target.respond_to?(:module_map)
|
|
end
|
|
|
|
# Fix Hermes build script (path env)
|
|
if target.name == 'hermes-engine'
|
|
script = target.build_phases.first.shell_script
|
|
target.build_phases.first.shell_script = "export NODE_BINARY=$(which node)\n#{script}"
|
|
end
|
|
end
|
|
end
|