Skip to content

Commit 4d57126

Browse files
committed
fix: try removing symbol removal
1 parent 572d7f8 commit 4d57126

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

examples/SampleApp/ios/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ target 'SampleApp' do
3131
# Beginning with firebase-ios-sdk v9+ (react-native-firebase v15+) we must tell CocoaPods to use frameworks.
3232
# https://rnfirebase.io/#altering-cocoapods-to-use-frameworks
3333
use_frameworks! :linkage => :static
34-
$RNFirebaseAsStaticFramework = true
3534

3635
use_react_native!(
3736
:path => config[:reactNativePath],

examples/SampleApp/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1951,6 +1951,6 @@ SPEC CHECKSUMS:
19511951
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
19521952
Yoga: b2eaabf17044cd4273a661b14eb83f9fd2c90491
19531953

1954-
PODFILE CHECKSUM: de5234551be803f4b70b79cbcc1734989dc86e63
1954+
PODFILE CHECKSUM: dce2157a9f73b4f5b33c1574e040875d7e9262dd
19551955

19561956
COCOAPODS: 1.14.3

examples/SampleApp/ios/SampleApp.xcodeproj/project.pbxproj

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,7 @@
503503
PRODUCT_BUNDLE_IDENTIFIER = io.getstream.reactnative.SampleApp;
504504
PRODUCT_NAME = SampleApp;
505505
PROVISIONING_PROFILE_SPECIFIER = "";
506+
STRIP_SWIFT_SYMBOLS = NO;
506507
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
507508
SUPPORTS_MACCATALYST = NO;
508509
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
@@ -524,6 +525,7 @@
524525
CODE_SIGN_ENTITLEMENTS = SampleApp/SampleAppRelease.entitlements;
525526
CODE_SIGN_IDENTITY = "iPhone Distribution";
526527
CODE_SIGN_STYLE = Manual;
528+
COPY_PHASE_STRIP = NO;
527529
CURRENT_PROJECT_VERSION = 149;
528530
DEVELOPMENT_TEAM = EHV7XZLAHA;
529531
INFOPLIST_FILE = SampleApp/Info.plist;
@@ -539,6 +541,7 @@
539541
PRODUCT_BUNDLE_IDENTIFIER = io.getstream.reactnative.SampleApp;
540542
PRODUCT_NAME = SampleApp;
541543
PROVISIONING_PROFILE_SPECIFIER = "match AdHoc io.getstream.reactnative.SampleApp";
544+
STRIP_SWIFT_SYMBOLS = NO;
542545
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
543546
SUPPORTS_MACCATALYST = NO;
544547
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
@@ -678,7 +681,10 @@
678681
"-DFOLLY_USE_LIBCPP=1",
679682
"-DFOLLY_CFG_NO_COROUTINES=1",
680683
);
681-
OTHER_LDFLAGS = "$(inherited) ";
684+
OTHER_LDFLAGS = (
685+
"$(inherited)",
686+
" ",
687+
);
682688
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
683689
SDKROOT = iphoneos;
684690
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
@@ -810,7 +816,10 @@
810816
"-DFOLLY_USE_LIBCPP=1",
811817
"-DFOLLY_CFG_NO_COROUTINES=1",
812818
);
813-
OTHER_LDFLAGS = "$(inherited) ";
819+
OTHER_LDFLAGS = (
820+
"$(inherited)",
821+
" ",
822+
);
814823
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
815824
SDKROOT = iphoneos;
816825
USE_HERMES = true;

0 commit comments

Comments
 (0)