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> { configure<ApplicationExtension> {
namespace = "com.aurora.store" namespace = "com.aurora.store"
compileSdk { compileSdk {
version = release(37) version = release(37) {
minorApiLevel = 0
}
} }
defaultConfig { defaultConfig {
applicationId = "com.aurora.store" applicationId = "com.aurora.store"
minSdk = 23 minSdk {
targetSdk = 36 version = release(23)
}
targetSdk {
version = release(37)
}
versionCode = 74 versionCode = 74
versionName = "4.8.2" versionName = "4.8.2"