add android target and update repo structure

This commit is contained in:
2025-09-04 11:06:35 +02:00
parent 8a2d9f216b
commit b65c6177da
43 changed files with 1064 additions and 279 deletions

View File

@@ -1,7 +1,44 @@
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
id("com.android.application") version '8.12.2' apply false
id("com.android.library") version '8.12.2' apply false
id("org.jetbrains.kotlin.android") version "2.1.20" apply false
}
}
dependencyResolutionManagement {
repositories {
mavenLocal()
mavenCentral()
google()
maven {
url = uri("https://central.sonatype.com/repository/maven-snapshots")
}
}
}
rootProject.name = settings.projectName
include('app')
if(withDesktopPlatform) {
include('platform-desktop')
}
if (withAndroidPlatform) {
include('platform-android')
}