Skip to content

Commit f4e1c88

Browse files
committed
Add missed android sdk versions
1 parent e07ab87 commit f4e1c88

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

firebase-config/bandwagoner/bandwagoner.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ apply plugin: 'com.android.application'
1818
apply plugin: com.google.firebase.gradle.plugins.ci.device.FirebaseTestLabPlugin
1919

2020
android {
21-
compileSdkVersion 28
21+
compileSdkVersion project.targetSdkVersion
2222
lintOptions {
2323
abortOnError false
2424
}
@@ -27,7 +27,7 @@ android {
2727
defaultConfig {
2828
applicationId "com.googletest.firebase.remoteconfig.bandwagoner"
2929
minSdkVersion 16
30-
targetSdkVersion 28
30+
targetSdkVersion project.targetSdkVersion
3131
versionCode 1
3232
versionName "1.0"
3333
multiDexEnabled true

firebase-crashlytics-ndk/firebase-crashlytics-ndk.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,15 @@ firebaseLibrary {
2121
publishJavadoc = false
2222
}
2323

24-
def androidVersion = 28
25-
2624
android {
2725
adbOptions {
2826
timeOutInMs 60 * 1000
2927
}
3028

31-
compileSdkVersion androidVersion
29+
compileSdkVersion project.targetSdkVersion
3230
defaultConfig {
3331
minSdkVersion 16
34-
targetSdkVersion androidVersion
32+
targetSdkVersion project.targetSdkVersion
3533
versionName version
3634

3735
consumerProguardFiles 'firebase-crashlytics-ndk-proguard.txt'

firebase-crashlytics/firebase-crashlytics.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,15 @@ firebaseLibrary {
2020
testLab.enabled = true
2121
}
2222

23-
def androidVersion = 28
24-
2523
android {
2624
adbOptions {
2725
timeOutInMs 60 * 1000
2826
}
2927

30-
compileSdkVersion androidVersion
28+
compileSdkVersion project.targetSdkVersion
3129
defaultConfig {
3230
minSdkVersion 16
33-
targetSdkVersion androidVersion
31+
targetSdkVersion project.targetSdkVersion
3432
versionName version
3533

3634
multiDexEnabled true

firebase-firestore/ktx/ktx.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ firebaseLibrary {
2323
}
2424

2525
android {
26-
compileSdkVersion 28
26+
compileSdkVersion project.targetSdkVersion
2727
defaultConfig {
2828
minSdkVersion project.minSdkVersion
2929
multiDexEnabled true

smoke-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ buildscript {
3131
apply plugin: "com.android.application"
3232

3333
android {
34-
compileSdkVersion 28
34+
compileSdkVersion 29
3535

3636
defaultConfig {
3737
minSdkVersion 16

transport/transport-api/transport-api.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ firebaseLibrary{
2121
}
2222

2323
android {
24-
compileSdkVersion 28
24+
compileSdkVersion project.targetSdkVersion
2525
defaultConfig {
2626
minSdkVersion 14
27-
targetSdkVersion 28
27+
targetSdkVersion project.targetSdkVersion
2828
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2929
}
3030

0 commit comments

Comments
 (0)