Skip to content

Commit 3fc756b

Browse files
fix(app, ios): adopt firebase-ios-sdk 10.22.0 (invertase#7668)
* fix(app, ios): bump iOS SDK to v10.22.0 this should fix a compile issue with the new Xcode and the storage module * test(ios): delete Podfile.lock on pod install in practice this file is out of date and causes failures more often than having it survive the install is useful. github actions cache will still pull from the secondary key and get reasonable caching behavior even if the lockfile hash changes --------- Co-authored-by: Mike Hardy <[email protected]>
1 parent fc2c857 commit 3fc756b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
305305

306306
```ruby
307307
# Override Firebase SDK Version
308-
$FirebaseSDKVersion = '10.21.0'
308+
$FirebaseSDKVersion = '10.22.0'
309309
```
310310

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"tests:ios:test-reuse": "cd tests && SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 yarn detox test --configuration ios.sim.debug --reuse --loglevel warn",
4747
"tests:ios:test-cover": "cd tests && SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 ./node_modules/.bin/nyc yarn detox test --configuration ios.sim.debug --loglevel warn",
4848
"tests:ios:test-cover-reuse": "cd tests && SIMCTL_CHILD_GULGeneratedClassDisposeDisabled=1 node_modules/.bin/nyc yarn detox test --configuration ios.sim.debug --reuse --loglevel warn",
49-
"tests:ios:pod:install": "cd tests && rm -rf ios/ReactNativeFirebaseDemo.xcworkspace && yarn pod-install",
49+
"tests:ios:pod:install": "cd tests && rm -f ios/Podfile.lock && rm -rf ios/ReactNativeFirebaseDemo.xcworkspace && yarn pod-install",
5050
"format:markdown": "prettier --write \"docs/**/*.md\""
5151
},
5252
"devDependencies": {

packages/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
},
7474
"sdkVersions": {
7575
"ios": {
76-
"firebase": "10.21.0",
76+
"firebase": "10.22.0",
7777
"iosTarget": "11.0",
7878
"macosTarget": "10.13"
7979
},

0 commit comments

Comments
 (0)