Skip to content

Commit 8898891

Browse files
committed
Revert "chore: use minSdk=23 for auth, and minSdk=21 for other modules (#2196)"
This reverts commit eca0ca3
1 parent 83d1ce2 commit 8898891

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
namespace = "com.firebase.uidemo"
1111

1212
defaultConfig {
13-
minSdk = 23
13+
minSdk = Config.SdkVersions.min
1414
targetSdk = Config.SdkVersions.target
1515

1616
versionName = Config.version

auth/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ android {
1111
namespace = "com.firebase.ui.auth"
1212

1313
defaultConfig {
14-
// Auth requires a higher minSdk than the current Config.SdkVersions.min
15-
minSdk = 23
16-
targetSdk = Config.SdkVersions.target
14+
minSdk = Config.SdkVersions.min
15+
targetSdk =Config.SdkVersions.target
1716

1817
buildConfigField("String", "VERSION_NAME", "\"${Config.version}\"")
1918

buildSrc/src/main/kotlin/Config.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ object Config {
77
object SdkVersions {
88
const val compile = 35
99
const val target = 35
10-
// Note that auth uses a different minSdk than this and
11-
// should be changed in auth/build.gradle.kts
12-
const val min = 21
10+
const val min = 23
1311
}
1412

1513
object Plugins {

0 commit comments

Comments
 (0)