Skip to content

Commit

Permalink
fix(app, sdks): adopt ios sdk 10.15.0 / android sdk 32.3.1
Browse files Browse the repository at this point in the history
also includes a bump to play-services-auth 20.7.0

these are feature releases for upstream (primarily to add the new
firestore local persistent cache index manager) but those are new
symbols and if we adopted them here it would be a breaking change
as it would transitivey require users that are overriding the SDK
versions to use these new SDKs as a minimum. We will defer that
  • Loading branch information
mikehardy committed Sep 18, 2023
1 parent 5f6460a commit acc58da
Show file tree
Hide file tree
Showing 3 changed files with 156 additions and 156 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ project.ext {
// Overriding Library SDK Versions
firebase: [
// Override Firebase SDK Version
bom : "32.2.3"
bom : "32.3.1"
],
],
])
Expand All @@ -233,7 +233,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the

```ruby
# Override Firebase SDK Version
$FirebaseSDKVersion = '10.14.0'
$FirebaseSDKVersion = '10.15.0'
```

Once changed, reinstall your projects pods via pod install and rebuild your project with `npx react-native run-ios`.
Expand Down
6 changes: 3 additions & 3 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,19 @@
},
"sdkVersions": {
"ios": {
"firebase": "10.14.0",
"firebase": "10.15.0",
"iosTarget": "11.0",
"macosTarget": "10.13"
},
"android": {
"minSdk": 19,
"targetSdk": 33,
"compileSdk": 33,
"firebase": "32.2.3",
"firebase": "32.3.1",
"firebaseCrashlyticsGradle": "2.9.9",
"firebasePerfGradle": "1.4.2",
"gmsGoogleServicesGradle": "4.3.15",
"playServicesAuth": "20.6.0"
"playServicesAuth": "20.7.0"
}
}
}
Loading

1 comment on commit acc58da

@vercel
Copy link

@vercel vercel bot commented on acc58da Sep 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.