BlueWallet/ios/Podfile

67 lines
2.0 KiB
Plaintext
Raw Permalink Normal View History

2023-10-17 15:35:10 +02:00
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
2024-01-14 18:26:57 +01:00
min_ios_version_supported = '13.4'
2023-10-17 15:35:10 +02:00
node_require('react-native/scripts/react_native_pods.rb')
node_require('react-native-permissions/scripts/setup.rb')
2023-12-18 16:21:42 +01:00
# Resolve react_native_pods.rb with node to allow for hoisting
require Pod::Executable.execute_command('node', ['-p',
'require.resolve(
"react-native/scripts/react_native_pods.rb",
{paths: [process.argv[1]]},
)', __dir__]).strip
2023-03-04 18:51:11 +01:00
workspace 'BlueWallet'
2024-01-14 18:26:57 +01:00
platform :ios, min_ios_version_supported
2023-03-04 18:51:11 +01:00
prepare_react_native_project!
setup_permissions(['Camera', 'Notifications'])
2023-03-04 18:51:11 +01:00
linkage = ENV['USE_FRAMEWORKS']
if linkage != nil
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
use_frameworks! :linkage => linkage.to_sym
end
# Define a common function to configure shared settings for targets
def configure_target()
2020-10-07 14:24:36 +02:00
config = use_native_modules!
2020-06-18 17:49:36 +02:00
use_react_native!(
# Specify the path directly if use_native_modules! does not provide it
:path => config[:reactNativePath],
2023-03-04 18:51:11 +01:00
:app_path => "#{Pod::Config.instance.installation_root}/.."
)
2023-11-13 21:45:20 +01:00
pod 'react-native-bw-file-access', :path => '../blue_modules/react-native-bw-file-access'
end
target 'BlueWallet' do
configure_target()
2024-02-19 18:06:35 +01:00
end
post_install do |installer|
react_native_post_install(
installer,
2024-06-16 00:06:43 +02:00
:mac_catalyst_enabled => true,
# :ccache_enabled => true
)
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
2024-08-08 06:44:38 +02:00
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.4'
2024-09-11 18:22:50 +02:00
if ['React-Core-AccessibilityResources'].include? target.name
config.build_settings['CODE_SIGN_STYLE'] = "Manual"
config.build_settings['CODE_SIGN_IDENTITY'] = "Apple Distribution: Bluewallet Services, S. R. L. (A7W54YZ4WU)"
config.build_settings['DEVELOPMENT_TEAM'] = "A7W54YZ4WU"
end
end
2020-06-18 17:49:36 +02:00
end
2024-03-06 20:54:27 +01:00
end