update libs, fix warnings

This commit is contained in:
müde 2026-04-22 20:45:49 +02:00
parent 6e2cd059e9
commit e912f286a9
2 changed files with 7 additions and 11 deletions

View file

@ -1,12 +1,11 @@
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.compose.compiler)
}
android {
namespace = "space.darkest.nova.android"
compileSdk = 36
compileSdk = 37
defaultConfig {
applicationId = "space.darkest.nova.android"
@ -21,6 +20,7 @@ android {
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
@ -33,10 +33,6 @@ android {
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
buildFeatures {
compose = true
}

View file

@ -2,13 +2,13 @@
agp = "9.2.0"
kotlin = "2.1.20"
coreKtx = "1.18.0"
lifecycleRuntime = "2.9.0"
activityCompose = "1.10.1"
composeBom = "2025.04.01"
lifecycleRuntime = "2.10.0"
activityCompose = "1.13.0"
composeBom = "2026.04.01"
glance = "1.1.1"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
junitVersion = "1.3.0"
espressoCore = "3.7.0"
[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }