Skip to content

Commit

Permalink
feat(android, sdk): update firebase-android-sdk to 26.6.0
Browse files Browse the repository at this point in the history
https://firebase.google.com/support/release-notes/android#bom_v26-6-0

also updated various pieces of documentation that refer to SDK versions,
so they all match current stable releases
  • Loading branch information
mikehardy committed Mar 3, 2021
1 parent 381eae5 commit 5786641
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/crashlytics/android-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ buildscript {
// ..
dependencies {
// ..
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.0'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.1'
}
// ..
}
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ First, add the `google-services` plugin as a dependency inside of your `/android
buildscript {
dependencies {
// ... other dependencies
classpath 'com.google.gms:google-services:4.3.3'
classpath 'com.google.gms:google-services:4.3.4'
// Add me --- /\
}
}
Expand Down Expand Up @@ -194,7 +194,7 @@ project.ext {
// Overriding Library SDK Versions
firebase: [
// Override Firebase SDK Version
bom : "26.0.0"
bom : "26.6.0"
],
],
])
Expand All @@ -209,7 +209,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the

```ruby
# Override Firebase SDK Version
$FirebaseSDKVersion = '7.0.0'
$FirebaseSDKVersion = '7.7.0'
```

Once changed, reinstall your projects pods via pod install and rebuild your project with `npx react-native run-ios`.
Expand Down
2 changes: 1 addition & 1 deletion docs/perf/usage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Add the plugin to your `/android/build.gradle` file as a dependency:
buildscript {
dependencies {
// ...
classpath 'com.google.firebase:perf-plugin:1.3.1'
classpath 'com.google.firebase:perf-plugin:1.3.5'
}
```

Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"targetSdk": 30,
"compileSdk": 30,
"buildTools": "30.0.2",
"firebase": "26.5.0",
"firebase": "26.6.0",
"playServicesAuth": "19.0.0"
}
}
Expand Down
6 changes: 3 additions & 3 deletions tests/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
ext.googlePlayServicesVisionVersion = "20.1.3" // play-services-vision
ext.mediaCompatVersion = "1.2.1" // https://developer.android.com/jetpack/androidx/releases/media
ext.supportV4Version = "1.0.0" // https://developer.android.com/jetpack/androidx/releases/legacy androidx.legacy:legacy-support-v4
ext.swiperefreshlayoutVersion = "1.1.0" // https://dev eloper.android.com/jetpack/androidx/releases/swiperefreshlayout
ext.swiperefreshlayoutVersion = "1.1.0" // https://developer.android.com/jetpack/androidx/releases/swiperefreshlayout

repositories {
google()
Expand All @@ -26,8 +26,8 @@ buildscript {
classpath 'com.google.gms:google-services:4.3.4'
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.google.firebase:perf-plugin:1.3.4'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.0'
classpath 'com.google.firebase:perf-plugin:1.3.5'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.5.1'
}
}

Expand Down

0 comments on commit 5786641

Please sign in to comment.