Multi-module Gradle setup targeting Android (S-Pen) and Desktop (Wacom/LWJGL3). Includes core game stub, Android launcher with immersive mode, and desktop launcher. Asset directory shared across platforms. Gradle 8.6, Kotlin 1.9.23, LibGDX 1.12.1.
14 lines
165 B
Kotlin
14 lines
165 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
val gdxVersion: String by project
|
|
|
|
dependencies {
|
|
api("com.badlogicgames.gdx:gdx:$gdxVersion")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|