Skip to content

Commit a07ba54

Browse files
authored
chore: upgrade minimum ios deploymnet target
1 parent fb014b5 commit a07ba54

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ target 'QuickCryptoExample' do
3838
# https://github.com/mrousavy/nitro/issues/422#issuecomment-2545988256
3939
installer.pods_project.targets.each do |target|
4040
target.build_configurations.each do |config|
41-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.1'
41+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.4'
4242
config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++20'
4343

4444
# Force C++20 for all targets, especially problematic ones

packages/react-native-quick-crypto/src/expo-plugin/withXCode.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import path from 'path';
1212
*/
1313
export const withXCode: ConfigPlugin<ConfigProps> = config => {
1414
// Use expo-build-properties to bump iOS deployment target
15-
config = withBuildProperties(config, { ios: { deploymentTarget: '16.1' } });
16-
// Patch the generated Podfile fallback to ensure platform is always 16.1
15+
config = withBuildProperties(config, { ios: { deploymentTarget: '16.4' } });
16+
// Patch the generated Podfile fallback to ensure platform is always 16.4
1717
config = withDangerousMod(config, [
1818
'ios',
1919
modConfig => {
@@ -40,7 +40,7 @@ export const withXCode: ConfigPlugin<ConfigProps> = config => {
4040
# https://github.com/mrousavy/nitro/issues/422#issuecomment-2545988256
4141
installer.pods_project.targets.each do |target|
4242
target.build_configurations.each do |config|
43-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.1'
43+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.4'
4444
end
4545
end
4646
$2`,

0 commit comments

Comments
 (0)