fix: Set minSdkVersion to 23 (#1911)

* fix: Set `minSdkVersion` to 21

* sorry I meant 23
This commit is contained in:
Marc Rousavy
2023-10-03 13:52:42 +02:00
committed by GitHub
parent 8d90dcc476
commit 324e269173
3 changed files with 4 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ android {
}
defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 26)
minSdkVersion safeExtGet('minSdkVersion', 23)
compileSdkVersion safeExtGet('compileSdkVersion', 33)
targetSdkVersion safeExtGet('targetSdkVersion', 33)
versionCode 1

View File

@@ -3,7 +3,7 @@
buildscript {
ext {
buildToolsVersion = "33.0.0"
minSdkVersion = 26
minSdkVersion = 23
compileSdkVersion = 33
targetSdkVersion = 33
ndkVersion = "23.1.7779620"