Skip to content

Commit 0a76928

Browse files
committed
feat(app, sdks)!: ios-sdk 10.8.0 requires Xcode 13.3+; android-sdk 31.5.0
BREAKING CHANGE: firebase-ios-sdk 10.8.0 and higher require Xcode 13.3+, which transitively requires macOS 12.0+. You must update your CI build environments to meet these minimums as well as your development environments - if you have older hardware that still works but cannot be upgraded normally, you may like: https://dortania.github.io/OpenCore-Legacy-Patcher/
1 parent a88124a commit 0a76928

File tree

4 files changed

+152
-151
lines changed

4 files changed

+152
-151
lines changed

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ project.ext {
218218
// Overriding Library SDK Versions
219219
firebase: [
220220
// Override Firebase SDK Version
221-
bom : "31.4.0"
221+
bom : "31.5.0"
222222
],
223223
],
224224
])
@@ -233,7 +233,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
233233

234234
```ruby
235235
# Override Firebase SDK Version
236-
$FirebaseSDKVersion = '10.7.0'
236+
$FirebaseSDKVersion = '10.8.0'
237237
```
238238

239239
Once changed, reinstall your projects pods via pod install and rebuild your project with `npx react-native run-ios`.

packages/app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,19 @@
7373
},
7474
"sdkVersions": {
7575
"ios": {
76-
"firebase": "10.7.0",
76+
"firebase": "10.8.0",
7777
"iosTarget": "11.0",
7878
"macosTarget": "10.13"
7979
},
8080
"android": {
8181
"minSdk": 19,
8282
"targetSdk": 33,
8383
"compileSdk": 33,
84-
"firebase": "31.4.0",
84+
"firebase": "31.5.0",
8585
"firebaseCrashlyticsGradle": "2.9.2",
8686
"firebasePerfGradle": "1.4.2",
8787
"gmsGoogleServicesGradle": "4.3.15",
88-
"playServicesAuth": "20.3.0"
88+
"playServicesAuth": "20.5.0"
8989
}
9090
}
9191
}

packages/auth/e2e/multiFactor.e2e.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ describe('multi-factor', function () {
106106
e.message
107107
.toLocaleLowerCase()
108108
.should.containEql(
109-
'[auth/invalid-verification-code] The SMS verification code used to create the phone auth credential is invalid. Please resend the verification code sms'.toLocaleLowerCase(),
109+
'[auth/invalid-verification-code] The verification code from sms/totp is invalid. Please check and enter the correct verification code again.'.toLocaleLowerCase(),
110110
);
111111

112112
const verificationId = await firebase
@@ -441,7 +441,7 @@ describe('multi-factor', function () {
441441
e.message
442442
.toLocaleLowerCase()
443443
.should.containEql(
444-
'[auth/invalid-verification-code] The SMS verification code used to create the phone auth credential is invalid. Please resend the verification code sms'.toLocaleLowerCase(),
444+
'[auth/invalid-verification-code] the sms verification code used to create the phone auth credential is invalid. please resend the verification code sms and be sure to use the verification code provided by the user.'.toLocaleLowerCase(),
445445
);
446446

447447
return Promise.resolve();

0 commit comments

Comments
 (0)