Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
namespace = "com.firebase.uidemo"

defaultConfig {
minSdk = 23
minSdk = Config.SdkVersions.min
targetSdk = Config.SdkVersions.target

versionName = Config.version
Expand Down
5 changes: 2 additions & 3 deletions auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ android {
namespace = "com.firebase.ui.auth"

defaultConfig {
// Auth requires a higher minSdk than the current Config.SdkVersions.min
minSdk = 23
targetSdk = Config.SdkVersions.target
minSdk = Config.SdkVersions.min
targetSdk =Config.SdkVersions.target

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

Expand Down
4 changes: 1 addition & 3 deletions buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ object Config {
object SdkVersions {
const val compile = 35
const val target = 35
// Note that auth uses a different minSdk than this and
// should be changed in auth/build.gradle.kts
const val min = 21
const val min = 23
}

object Plugins {
Expand Down