Skip to content

Commit f60afe1

Browse files
authored
feat(sdks, android)!: firebase-android-sdk v29 / minSdkVersion API19 / target+compile API31 (#5825)
* build(deps): uncommitted lockfile change from react-native 0.67-rc2 integration * build(deps, android): compile/target SDK 31, build to 30.0.3 * build(deps)!: firebase-android-sdk 29.0.0, API19 minimum BREAKING CHANGE: firebase-android-sdk 29 requires android/build.gradle minSdkVersion 19 (as required in react-native 0.64+)
1 parent 2c1958e commit f60afe1

File tree

7 files changed

+225
-225
lines changed

7 files changed

+225
-225
lines changed

docs/crashlytics/android-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ buildscript {
4040
// ..
4141
dependencies {
4242
// ..
43-
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
43+
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.0'
4444
}
4545
// ..
4646
}

docs/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -183,16 +183,16 @@ project.ext {
183183
versions: [
184184
// Overriding Build/Android SDK Versions
185185
android : [
186-
minSdk : 16,
187-
targetSdk : 30,
188-
compileSdk: 30,
189-
buildTools: "30.0.2"
186+
minSdk : 19,
187+
targetSdk : 31,
188+
compileSdk: 31,
189+
buildTools: "30.0.3"
190190
],
191191
192192
// Overriding Library SDK Versions
193193
firebase: [
194194
// Override Firebase SDK Version
195-
bom : "28.3.1"
195+
bom : "29.0.0"
196196
],
197197
],
198198
])
@@ -207,7 +207,7 @@ Open your projects `/ios/Podfile` and add any of the globals shown below to the
207207

208208
```ruby
209209
# Override Firebase SDK Version
210-
$FirebaseSDKVersion = '8.5.0'
210+
$FirebaseSDKVersion = '8.9.0'
211211
```
212212

213213
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@
6868
"firebase": "8.9.0"
6969
},
7070
"android": {
71-
"minSdk": 16,
72-
"targetSdk": 30,
73-
"compileSdk": 30,
74-
"buildTools": "30.0.2",
75-
"firebase": "28.4.2",
76-
"firebaseCrashlyticsGradle": "2.7.1",
71+
"minSdk": 21,
72+
"targetSdk": 31,
73+
"compileSdk": 31,
74+
"buildTools": "30.0.3",
75+
"firebase": "29.0.0",
76+
"firebaseCrashlyticsGradle": "2.8.0",
7777
"firebasePerfGradle": "1.4.0",
7878
"gmsGoogleServicesGradle": "4.3.10",
7979
"playServicesAuth": "19.2.0"

packages/crashlytics/plugin/__tests__/__snapshots__/androidPlugin.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515
jcenter()
1616
}
1717
dependencies {
18-
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
18+
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.0'
1919
classpath(\\"com.android.tools.build:gradle:4.1.0\\")
2020
2121
// NOTE: Do not place your application dependencies here; they belong

tests/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ buildscript {
3535
classpath 'com.android.tools.build:gradle:7.0.3'
3636
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
3737
classpath 'com.google.firebase:perf-plugin:1.4.0'
38-
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
38+
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.0'
3939
classpath 'com.google.firebase:firebase-appdistribution-gradle:2.2.0'
4040
}
4141
}

0 commit comments

Comments
 (0)