Skip to content

Commit 3b8a98d

Browse files
committed
fix: apply temporary workaround for Xcode 26.4 by setting C++ language standard for fmt pod
1 parent 78927bc commit 3b8a98d

3 files changed

Lines changed: 64 additions & 45 deletions

File tree

example/ios/Podfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,20 @@ target 'ReactNativeSdkExample' do
3333
:mac_catalyst_enabled => false,
3434
# :ccache_enabled => true
3535
)
36+
37+
38+
## Temporary workaround for Xcode 26.4
39+
installer.pods_project.targets.each do |target|
40+
target.build_configurations.each do |config|
41+
# fmt/base.h unconditionally redefines FMT_USE_CONSTEVAL based on __cplusplus,
42+
# so preprocessor defines are overwritten. The reliable fix is to compile fmt
43+
# in C++17 mode: FMT_CPLUSPLUS (201703L) < 201709L → FMT_USE_CONSTEVAL = 0.
44+
# All other pods stay in C++20 (React-perflogger needs std::unordered_map::contains).
45+
if target.name == 'fmt'
46+
config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17'
47+
end
48+
49+
end
50+
end
3651
end
3752
end

example/ios/ReactNativeSdkExample.xcodeproj/project.pbxproj

Lines changed: 48 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
/* Begin PBXBuildFile section */
1010
00E356F31AD99517003FC87E /* ReactNativeSdkExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeSdkExampleTests.m */; };
1111
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
12-
340B7344440A7080C4C41481 /* libPods-ReactNativeSdkExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F33C80ED83377BE42557E7A1 /* libPods-ReactNativeSdkExample.a */; };
1312
779227342DFA3FB500D69EC0 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 779227332DFA3FB500D69EC0 /* AppDelegate.swift */; };
1413
77E3B5772EA71A4B001449CE /* IterableJwtGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77E3B5742EA71A4B001449CE /* IterableJwtGenerator.swift */; };
1514
77E3B5782EA71A4B001449CE /* JwtTokenModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77E3B5752EA71A4B001449CE /* JwtTokenModule.mm */; };
1615
77E3B5792EA71A4B001449CE /* JwtTokenModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77E3B5762EA71A4B001449CE /* JwtTokenModule.swift */; };
16+
7C8CB9778D44155D232C3690 /* libPods-ReactNativeSdkExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FC8A71BC6B8F9B2B3CF98A77 /* libPods-ReactNativeSdkExample.a */; };
1717
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
1818
A3A40C20801B8F02005FA4C0 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FC6B09E65A7BD9F6864C5D8 /* PrivacyInfo.xcprivacy */; };
1919
/* End PBXBuildFile section */
@@ -32,23 +32,23 @@
3232
00E356EE1AD99517003FC87E /* ReactNativeSdkExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNativeSdkExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
3333
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3434
00E356F21AD99517003FC87E /* ReactNativeSdkExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactNativeSdkExampleTests.m; sourceTree = "<group>"; };
35-
0E36B716BFEBCD6726A94808 /* Pods-ReactNativeSdkExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSdkExample.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample.debug.xcconfig"; sourceTree = "<group>"; };
3635
13B07F961A680F5B00A75B9A /* ReactNativeSdkExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNativeSdkExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
3736
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ReactNativeSdkExample/Images.xcassets; sourceTree = "<group>"; };
3837
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ReactNativeSdkExample/Info.plist; sourceTree = "<group>"; };
3938
13B07FB71A68108700A75B9A /* ReactNativeSdkExample.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; name = ReactNativeSdkExample.entitlements; path = ReactNativeSdkExample/ReactNativeSdkExample.entitlements; sourceTree = "<group>"; };
4039
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = ReactNativeSdkExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
4140
1FC6B09E65A7BD9F6864C5D8 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = ReactNativeSdkExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
41+
2417D1EB7566273B17DC1E08 /* Pods-ReactNativeSdkExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSdkExample.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample.release.xcconfig"; sourceTree = "<group>"; };
4242
779227312DFA3FB500D69EC0 /* ReactNativeSdkExample-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ReactNativeSdkExample-Bridging-Header.h"; sourceTree = "<group>"; };
4343
779227322DFA3FB500D69EC0 /* ReactNativeSdkExampleTests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ReactNativeSdkExampleTests-Bridging-Header.h"; sourceTree = "<group>"; };
4444
779227332DFA3FB500D69EC0 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = ReactNativeSdkExample/AppDelegate.swift; sourceTree = "<group>"; };
4545
77E3B5742EA71A4B001449CE /* IterableJwtGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IterableJwtGenerator.swift; sourceTree = "<group>"; };
4646
77E3B5752EA71A4B001449CE /* JwtTokenModule.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = JwtTokenModule.mm; sourceTree = "<group>"; };
4747
77E3B5762EA71A4B001449CE /* JwtTokenModule.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JwtTokenModule.swift; sourceTree = "<group>"; };
4848
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ReactNativeSdkExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
49+
C54F5D14A47F992CD62ED1F6 /* Pods-ReactNativeSdkExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSdkExample.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample.debug.xcconfig"; sourceTree = "<group>"; };
4950
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
50-
F33C80ED83377BE42557E7A1 /* libPods-ReactNativeSdkExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeSdkExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
51-
F4BEA47FF573D84ED4C085C9 /* Pods-ReactNativeSdkExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeSdkExample.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample.release.xcconfig"; sourceTree = "<group>"; };
51+
FC8A71BC6B8F9B2B3CF98A77 /* libPods-ReactNativeSdkExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeSdkExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
5252
/* End PBXFileReference section */
5353

5454
/* Begin PBXFrameworksBuildPhase section */
@@ -63,7 +63,7 @@
6363
isa = PBXFrameworksBuildPhase;
6464
buildActionMask = 2147483647;
6565
files = (
66-
340B7344440A7080C4C41481 /* libPods-ReactNativeSdkExample.a in Frameworks */,
66+
7C8CB9778D44155D232C3690 /* libPods-ReactNativeSdkExample.a in Frameworks */,
6767
);
6868
runOnlyForDeploymentPostprocessing = 0;
6969
};
@@ -107,7 +107,7 @@
107107
isa = PBXGroup;
108108
children = (
109109
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
110-
F33C80ED83377BE42557E7A1 /* libPods-ReactNativeSdkExample.a */,
110+
FC8A71BC6B8F9B2B3CF98A77 /* libPods-ReactNativeSdkExample.a */,
111111
);
112112
name = Frameworks;
113113
sourceTree = "<group>";
@@ -149,8 +149,8 @@
149149
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
150150
isa = PBXGroup;
151151
children = (
152-
0E36B716BFEBCD6726A94808 /* Pods-ReactNativeSdkExample.debug.xcconfig */,
153-
F4BEA47FF573D84ED4C085C9 /* Pods-ReactNativeSdkExample.release.xcconfig */,
152+
C54F5D14A47F992CD62ED1F6 /* Pods-ReactNativeSdkExample.debug.xcconfig */,
153+
2417D1EB7566273B17DC1E08 /* Pods-ReactNativeSdkExample.release.xcconfig */,
154154
);
155155
path = Pods;
156156
sourceTree = "<group>";
@@ -180,13 +180,13 @@
180180
isa = PBXNativeTarget;
181181
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ReactNativeSdkExample" */;
182182
buildPhases = (
183-
438E21A5836E9B59D38C5C82 /* [CP] Check Pods Manifest.lock */,
183+
5C8B0D811BD007F9E22570D2 /* [CP] Check Pods Manifest.lock */,
184184
13B07F871A680F5B00A75B9A /* Sources */,
185185
13B07F8C1A680F5B00A75B9A /* Frameworks */,
186186
13B07F8E1A680F5B00A75B9A /* Resources */,
187187
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
188-
000604D101B3615CA902775E /* [CP] Embed Pods Frameworks */,
189-
F8022DDAF9F0BC2A3E9694F4 /* [CP] Copy Pods Resources */,
188+
11622BAFEF48FA6292AA3DB6 /* [CP] Embed Pods Frameworks */,
189+
2FB5F3B3B7AA8800DE988A29 /* [CP] Copy Pods Resources */,
190190
);
191191
buildRules = (
192192
);
@@ -203,7 +203,8 @@
203203
83CBB9F71A601CBA00E9B192 /* Project object */ = {
204204
isa = PBXProject;
205205
attributes = {
206-
LastUpgradeCheck = 1210;
206+
BuildIndependentTargetsInParallel = YES;
207+
LastUpgradeCheck = 2640;
207208
TargetAttributes = {
208209
00E356ED1AD99517003FC87E = {
209210
CreatedOnToolsVersion = 6.2;
@@ -255,7 +256,23 @@
255256
/* End PBXResourcesBuildPhase section */
256257

257258
/* Begin PBXShellScriptBuildPhase section */
258-
000604D101B3615CA902775E /* [CP] Embed Pods Frameworks */ = {
259+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
260+
isa = PBXShellScriptBuildPhase;
261+
buildActionMask = 2147483647;
262+
files = (
263+
);
264+
inputPaths = (
265+
"$(SRCROOT)/.xcode.env.local",
266+
"$(SRCROOT)/.xcode.env",
267+
);
268+
name = "Bundle React Native code and images";
269+
outputPaths = (
270+
);
271+
runOnlyForDeploymentPostprocessing = 0;
272+
shellPath = /bin/sh;
273+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
274+
};
275+
11622BAFEF48FA6292AA3DB6 /* [CP] Embed Pods Frameworks */ = {
259276
isa = PBXShellScriptBuildPhase;
260277
buildActionMask = 2147483647;
261278
files = (
@@ -272,23 +289,24 @@
272289
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample-frameworks.sh\"\n";
273290
showEnvVarsInLog = 0;
274291
};
275-
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
292+
2FB5F3B3B7AA8800DE988A29 /* [CP] Copy Pods Resources */ = {
276293
isa = PBXShellScriptBuildPhase;
277294
buildActionMask = 2147483647;
278295
files = (
279296
);
280-
inputPaths = (
281-
"$(SRCROOT)/.xcode.env.local",
282-
"$(SRCROOT)/.xcode.env",
297+
inputFileListPaths = (
298+
"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample-resources-${CONFIGURATION}-input-files.xcfilelist",
283299
);
284-
name = "Bundle React Native code and images";
285-
outputPaths = (
300+
name = "[CP] Copy Pods Resources";
301+
outputFileListPaths = (
302+
"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample-resources-${CONFIGURATION}-output-files.xcfilelist",
286303
);
287304
runOnlyForDeploymentPostprocessing = 0;
288305
shellPath = /bin/sh;
289-
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
306+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample-resources.sh\"\n";
307+
showEnvVarsInLog = 0;
290308
};
291-
438E21A5836E9B59D38C5C82 /* [CP] Check Pods Manifest.lock */ = {
309+
5C8B0D811BD007F9E22570D2 /* [CP] Check Pods Manifest.lock */ = {
292310
isa = PBXShellScriptBuildPhase;
293311
buildActionMask = 2147483647;
294312
files = (
@@ -310,23 +328,6 @@
310328
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
311329
showEnvVarsInLog = 0;
312330
};
313-
F8022DDAF9F0BC2A3E9694F4 /* [CP] Copy Pods Resources */ = {
314-
isa = PBXShellScriptBuildPhase;
315-
buildActionMask = 2147483647;
316-
files = (
317-
);
318-
inputFileListPaths = (
319-
"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample-resources-${CONFIGURATION}-input-files.xcfilelist",
320-
);
321-
name = "[CP] Copy Pods Resources";
322-
outputFileListPaths = (
323-
"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample-resources-${CONFIGURATION}-output-files.xcfilelist",
324-
);
325-
runOnlyForDeploymentPostprocessing = 0;
326-
shellPath = /bin/sh;
327-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeSdkExample/Pods-ReactNativeSdkExample-resources.sh\"\n";
328-
showEnvVarsInLog = 0;
329-
};
330331
/* End PBXShellScriptBuildPhase section */
331332

332333
/* Begin PBXSourcesBuildPhase section */
@@ -365,7 +366,6 @@
365366
buildSettings = {
366367
BUNDLE_LOADER = "$(TEST_HOST)";
367368
CLANG_ENABLE_MODULES = YES;
368-
DEVELOPMENT_TEAM = BP98Z28R86;
369369
GCC_PREPROCESSOR_DEFINITIONS = (
370370
"DEBUG=1",
371371
"$(inherited)",
@@ -397,7 +397,6 @@
397397
BUNDLE_LOADER = "$(TEST_HOST)";
398398
CLANG_ENABLE_MODULES = YES;
399399
COPY_PHASE_STRIP = NO;
400-
DEVELOPMENT_TEAM = BP98Z28R86;
401400
INFOPLIST_FILE = ReactNativeSdkExampleTests/Info.plist;
402401
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
403402
LD_RUNPATH_SEARCH_PATHS = (
@@ -420,13 +419,12 @@
420419
};
421420
13B07F941A680F5B00A75B9A /* Debug */ = {
422421
isa = XCBuildConfiguration;
423-
baseConfigurationReference = 0E36B716BFEBCD6726A94808 /* Pods-ReactNativeSdkExample.debug.xcconfig */;
422+
baseConfigurationReference = C54F5D14A47F992CD62ED1F6 /* Pods-ReactNativeSdkExample.debug.xcconfig */;
424423
buildSettings = {
425424
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
426425
CLANG_ENABLE_MODULES = YES;
427426
CODE_SIGN_ENTITLEMENTS = ReactNativeSdkExample/ReactNativeSdkExample.entitlements;
428427
CURRENT_PROJECT_VERSION = 1;
429-
DEVELOPMENT_TEAM = BP98Z28R86;
430428
ENABLE_BITCODE = NO;
431429
INFOPLIST_FILE = ReactNativeSdkExample/Info.plist;
432430
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
@@ -451,13 +449,12 @@
451449
};
452450
13B07F951A680F5B00A75B9A /* Release */ = {
453451
isa = XCBuildConfiguration;
454-
baseConfigurationReference = F4BEA47FF573D84ED4C085C9 /* Pods-ReactNativeSdkExample.release.xcconfig */;
452+
baseConfigurationReference = 2417D1EB7566273B17DC1E08 /* Pods-ReactNativeSdkExample.release.xcconfig */;
455453
buildSettings = {
456454
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
457455
CLANG_ENABLE_MODULES = YES;
458456
CODE_SIGN_ENTITLEMENTS = ReactNativeSdkExample/ReactNativeSdkExample.entitlements;
459457
CURRENT_PROJECT_VERSION = 1;
460-
DEVELOPMENT_TEAM = BP98Z28R86;
461458
INFOPLIST_FILE = ReactNativeSdkExample/Info.plist;
462459
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
463460
LD_RUNPATH_SEARCH_PATHS = (
@@ -511,8 +508,10 @@
511508
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
512509
COPY_PHASE_STRIP = NO;
513510
CXX = "";
511+
DEVELOPMENT_TEAM = BP98Z28R86;
514512
ENABLE_STRICT_OBJC_MSGSEND = YES;
515513
ENABLE_TESTABILITY = YES;
514+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
516515
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
517516
GCC_C_LANGUAGE_STANDARD = gnu99;
518517
GCC_DYNAMIC_NO_PIC = NO;
@@ -568,6 +567,7 @@
568567
);
569568
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
570569
SDKROOT = iphoneos;
570+
STRING_CATALOG_GENERATE_SYMBOLS = YES;
571571
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
572572
USE_HERMES = true;
573573
};
@@ -606,8 +606,10 @@
606606
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
607607
COPY_PHASE_STRIP = YES;
608608
CXX = "";
609+
DEVELOPMENT_TEAM = BP98Z28R86;
609610
ENABLE_NS_ASSERTIONS = NO;
610611
ENABLE_STRICT_OBJC_MSGSEND = YES;
612+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
611613
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
612614
GCC_C_LANGUAGE_STANDARD = gnu99;
613615
GCC_NO_COMMON_BLOCKS = YES;
@@ -655,6 +657,8 @@
655657
);
656658
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
657659
SDKROOT = iphoneos;
660+
STRING_CATALOG_GENERATE_SYMBOLS = YES;
661+
SWIFT_COMPILATION_MODE = wholemodule;
658662
USE_HERMES = true;
659663
VALIDATE_PRODUCT = YES;
660664
};

example/ios/ReactNativeSdkExample.xcodeproj/xcshareddata/xcschemes/ReactNativeSdkExample.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1210"
3+
LastUpgradeVersion = "2640"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

0 commit comments

Comments
 (0)