Bump target SDK to Android 17

Also specify minor API level for compile SDK

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2026-05-05 11:14:13 +08:00
parent ecfbe20722
commit 6041672003

View File

@@ -49,13 +49,19 @@ kotlin {
configure<ApplicationExtension> {
namespace = "com.aurora.store"
compileSdk {
version = release(37)
version = release(37) {
minorApiLevel = 0
}
}
defaultConfig {
applicationId = "com.aurora.store"
minSdk = 23
targetSdk = 36
minSdk {
version = release(23)
}
targetSdk {
version = release(37)
}
versionCode = 74
versionName = "4.8.2"