Library used in games created by Lunar Bits.
- Java 11.0.2
- LibGDX 1.11.0
gradle desktop:runAdd the library to the core project inside the build.gradle file located in your project's root folder:
project(":core") {
apply plugin: "java-library"
dependencies {
api "com.badlogicgames.gdx:gdx:$gdxVersion"
// ...
implementation "com.github.kendaozinho:libgdx-common:0.0.115" // <-- add this
}
}Add the ui folder and the audio folder inside your Android project's assets ( or the core project if it doesn't exist).
Import the payment libs along with the smartphone libs if needed.
Maven Local:
rm -rf $HOME/.m2/repository/com/kendao/libgdx/libgdx-common/ && gradle publishToMavenLocal
Mavel Central:
gradle publish
Kenneth Gottschalk de Azevedo