update to Android Gradle 8.12.0

This commit is contained in:
2025-08-13 15:03:43 +02:00
parent e665b9746a
commit 7cf9d92320
3 changed files with 14 additions and 10 deletions

View File

@@ -7,17 +7,14 @@ plugins {
android {
namespace = "com.mrunk.wearhr"
compileSdk = 34
compileSdk = 35
defaultConfig {
applicationId = "com.mrunk.wearhr"
minSdk = 30 // Wear OS 3+
targetSdk = 34
minSdk = 30 // Wear OS 3+ (passt auch für Wear OS 5)
targetSdk = 35
versionCode = 1
versionName = "0.1.0"
// Allow cleartext OFF by default; we use WSS.
resourceConfigurations += listOf("en", "de")
}
buildTypes {

View File

@@ -1,4 +1,4 @@
plugins {
id("com.android.application") version "8.5.0" apply false
kotlin("android") version "1.9.24" apply false
}
id("com.android.application") version "8.12.0" apply false
id("org.jetbrains.kotlin.android") version "2.1.20" apply false
}

View File

@@ -1,2 +1,9 @@
pluginManagement {
repositories { google(); mavenCentral(); gradlePluginPortal() }
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories { google(); mavenCentral() }
}
rootProject.name = "wearos-heartmonitor-wss"
include(":app")
include(":app")