Skip to content

Commit f4fbe8a

Browse files
authored
chore: upgrade minimum ios deployment target (#1036)
1 parent 0b0f59f commit f4fbe8a

3 files changed

Lines changed: 8 additions & 8 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

example/ios/QuickCryptoExample.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@
267267
DEVELOPMENT_TEAM = 64977D8TY3;
268268
ENABLE_BITCODE = NO;
269269
INFOPLIST_FILE = QuickCryptoExample/Info.plist;
270-
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
270+
IPHONEOS_DEPLOYMENT_TARGET = 16.4;
271271
LD_RUNPATH_SEARCH_PATHS = (
272272
"$(inherited)",
273273
"@executable_path/Frameworks",
@@ -295,7 +295,7 @@
295295
CURRENT_PROJECT_VERSION = 1;
296296
DEVELOPMENT_TEAM = 64977D8TY3;
297297
INFOPLIST_FILE = QuickCryptoExample/Info.plist;
298-
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
298+
IPHONEOS_DEPLOYMENT_TARGET = 16.4;
299299
LD_RUNPATH_SEARCH_PATHS = (
300300
"$(inherited)",
301301
"@executable_path/Frameworks",
@@ -375,7 +375,7 @@
375375
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
376376
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
377377
);
378-
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
378+
IPHONEOS_DEPLOYMENT_TARGET = 16.4;
379379
LD = "";
380380
LDPLUSPLUS = "";
381381
LD_RUNPATH_SEARCH_PATHS = (
@@ -461,7 +461,7 @@
461461
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
462462
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
463463
);
464-
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
464+
IPHONEOS_DEPLOYMENT_TARGET = 16.4;
465465
LD = "";
466466
LDPLUSPLUS = "";
467467
LD_RUNPATH_SEARCH_PATHS = (

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)