removed dependency info block and made new release 2.0.3

This commit is contained in:
Odweta
2024-11-19 19:09:21 +01:00
parent ebfc3c1c23
commit 980e51e8f1
4 changed files with 18 additions and 5 deletions
+14 -4
View File
@@ -12,8 +12,8 @@ android {
applicationId = "com.odweta.solon"
minSdk = 28
targetSdk = 34
versionCode = 202
versionName = "2.0.2"
versionCode = 203
versionName = "2.0.3"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
@@ -27,6 +27,10 @@ android {
}
}
buildFeatures {
compose = true
}
buildTypes {
release {
isMinifyEnabled = false
@@ -36,15 +40,21 @@ android {
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}
buildFeatures {
compose = true
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
}