Skip to content

Commit

Permalink
Raising min SDK from 19 to 23
Browse files Browse the repository at this point in the history
This should be done because Android 14 (aka api 34) will only allow projects built with targetSDK >= 23
See https://developer.android.com/about/versions/14/behavior-changes-all#minimum-target-api-level
  • Loading branch information
Daeda88 committed Sep 27, 2023
1 parent 9aa6426 commit 72a6d42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ buildscript {
}
}

val compileSdkVersion by extra(33)
val minSdkVersion by extra(19)
val compileSdkVersion by extra(34)
val minSdkVersion by extra(23)

tasks {
register("updateVersions") {
Expand Down

0 comments on commit 72a6d42

Please sign in to comment.