fix: Use minSdkVersion of 26 again

This commit is contained in:
Marc Rousavy
2023-10-05 10:56:30 +02:00
parent c9795ce767
commit 59699929f4
3 changed files with 4 additions and 4 deletions

View File

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

View File

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