diff --git a/build.gradle.kts b/build.gradle.kts index d2e01e8470..12838db09a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -19,7 +19,7 @@ buildscript { } dependencies { classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${com.unciv.build.BuildConfig.kotlinVersion}") - classpath("com.android.tools.build:gradle:8.2.2") + classpath("com.android.tools.build:gradle:8.5.0") } } @@ -90,22 +90,24 @@ project(":server") { } -project(":android") { - apply(plugin = "com.android.application") - apply(plugin = "kotlin-android") +if (System.getenv("ANDROID_HOME") != null) { + project(":android") { + apply(plugin = "com.android.application") + apply(plugin = "kotlin-android") - val natives by configurations.creating + val natives by configurations.creating - dependencies { - "implementation"(project(":core")) - // Not sure why I had to add this in for the upgrade to 1.12.1 to work, we can probably remove this later since it's contained in core - "implementation"("com.badlogicgames.gdx:gdx:$gdxVersion") - "implementation"("com.badlogicgames.gdx:gdx-backend-android:$gdxVersion") - "implementation"("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion") - natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a") - natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a") - natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86") - natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64") + dependencies { + "implementation"(project(":core")) + // Not sure why I had to add this in for the upgrade to 1.12.1 to work, we can probably remove this later since it's contained in core + "implementation"("com.badlogicgames.gdx:gdx:$gdxVersion") + "implementation"("com.badlogicgames.gdx:gdx-backend-android:$gdxVersion") + "implementation"("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion") + natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a") + natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a") + natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86") + natives("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64") + } } } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 62f495dfed..b82aa23a4f 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/settings.gradle.kts b/settings.gradle.kts index 9b0f76ae3d..425357e372 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1 +1,2 @@ -include("desktop", "android", "core", "tests", "server") +include("desktop", "core", "tests", "server") +if (System.getenv("ANDROID_HOME") != null) include("android")