I have been wanting to find a game engine that allows me to use Kotlin. I found one that seems perfect for me. Said game engine is LittleKT. I tried to build the Gradle project and run it for JVM in Visual Studio Code. When I entered gradle build assuming the right directory, I was told by Gradle that it could not determine the dependencies of task :game:compileDebugJavaWithJavac. Here is the full error:
* What went wrong:
Could not determine the dependencies of task
':game:compileDebugJavaWithJavac'.
> SDK location not found. Define location with an
ANDROID_SDK_ROOT environment variable or by setting the sdk.dir
path in your project's local properties file at
'/home/saunderstock1/Kotlin-
Projects/TestProject/littlekttemplate-master/littlekttemplate-
master/local.properties'.
Does anyone know exactly what I need to do here?
I apologize for my ignorance regarding Gradle.
P.S. I would also appreciate any references to any good tutorials for using Gradle in situations like these (understanding other people's Gradle projects such as the LittleKT game engine) or just in general. Only if you want to of course.
Thank you!