From 35e1370d8ce46d230f2c39ad486581f4e8323266 Mon Sep 17 00:00:00 2001 From: Jeremy Zongker Date: Mon, 12 Aug 2024 19:19:30 -0500 Subject: [PATCH 1/3] Fixing build errors --- ios/B1Mobile.xcodeproj/project.pbxproj | 12 ++---------- src/helpers/EnvironmentHelper.ts | 4 ++-- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/ios/B1Mobile.xcodeproj/project.pbxproj b/ios/B1Mobile.xcodeproj/project.pbxproj index 7b8adfc0..6fbbdea8 100644 --- a/ios/B1Mobile.xcodeproj/project.pbxproj +++ b/ios/B1Mobile.xcodeproj/project.pbxproj @@ -701,11 +701,7 @@ ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = "$(inherited)"; - OTHER_LDFLAGS = ( - "$(inherited)", - " ", - "-Wl -ld_classic ", - ); + OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; }; @@ -778,11 +774,7 @@ MTL_ENABLE_DEBUG_INFO = NO; OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = "$(inherited)"; - OTHER_LDFLAGS = ( - "$(inherited)", - " ", - "-Wl -ld_classic ", - ); + OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; VALIDATE_PRODUCT = YES; diff --git a/src/helpers/EnvironmentHelper.ts b/src/helpers/EnvironmentHelper.ts index 2217e97c..1bf4d0b1 100644 --- a/src/helpers/EnvironmentHelper.ts +++ b/src/helpers/EnvironmentHelper.ts @@ -17,8 +17,8 @@ export class EnvironmentHelper { static init = () => { let stage = STAGE; - //stage = "prod"; - stage = "staging"; + stage = "prod"; + //stage = "staging"; switch (stage) { case "prod": EnvironmentHelper.initProd(); break; default: EnvironmentHelper.initDev(); break; From 8098478530d659c5b819d33ba31080451ee9190f Mon Sep 17 00:00:00 2001 From: Jeremy Zongker Date: Mon, 12 Aug 2024 19:57:04 -0500 Subject: [PATCH 2/3] Successful build on ios --- ios/Podfile.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 2c84c116..855dc52b 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -67,9 +67,9 @@ PODS: - GoogleUtilities/Logger (~> 7.12) - FirebaseCoreExtension (10.20.0): - FirebaseCore (~> 10.0) - - FirebaseCoreInternal (10.28.0): + - FirebaseCoreInternal (10.29.0): - "GoogleUtilities/NSData+zlib (~> 7.8)" - - FirebaseInstallations (10.28.0): + - FirebaseInstallations (10.29.0): - FirebaseCore (~> 10.0) - GoogleUtilities/Environment (~> 7.8) - GoogleUtilities/UserDefaults (~> 7.8) @@ -883,8 +883,8 @@ SPEC CHECKSUMS: FirebaseAnalytics: a2731bf3670747ce8f65368b118d18aa8e368246 FirebaseCore: 28045c1560a2600d284b9c45a904fe322dc890b6 FirebaseCoreExtension: 0659f035b88c5a7a15a9763c48c2e6ca8c0a2977 - FirebaseCoreInternal: 58d07f1362fddeb0feb6a857d1d1d1c5e558e698 - FirebaseInstallations: 60c1d3bc1beef809fd1ad1189a8057a040c59f2e + FirebaseCoreInternal: df84dd300b561c27d5571684f389bf60b0a5c934 + FirebaseInstallations: 913cf60d0400ebd5d6b63a28b290372ab44590dd FirebaseMessaging: 06c414a21b122396a26847c523d5c370f8325df5 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b @@ -960,4 +960,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: e96e6349a154af3fd7ee72779ee7ab9ac87f3752 -COCOAPODS: 1.15.2 \ No newline at end of file +COCOAPODS: 1.15.2 From e97e91448f6d18c40192d1e0c9720436535544b9 Mon Sep 17 00:00:00 2001 From: Jeremy Zongker Date: Mon, 12 Aug 2024 20:37:17 -0500 Subject: [PATCH 3/3] Deployed 1.10 --- ios/B1Mobile/Info.plist | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/B1Mobile/Info.plist b/ios/B1Mobile/Info.plist index 8b3c22f4..fd806295 100644 --- a/ios/B1Mobile/Info.plist +++ b/ios/B1Mobile/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.9.0 + 1.10.0 CFBundleSignature ???? CFBundleVersion diff --git a/package.json b/package.json index 1e0e6bb3..a65e4038 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "B1Mobile", - "version": "1.9.0", + "version": "1.10.0", "private": true, "scripts": { "android": "react-native run-android",