This Runtime allows you to have all of the Anthill Platform functionality inside of your Java-based game (for example, using libGDX).
- Add the JitPack repository to your
build.gradle
file
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
- Add the dependency:
dependencies {
compile 'com.github.anthill-platform:anthill-runtime-java:0.1.7'
}
- Add the JitPack repository to your
pom.xml
file
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- Add the dependency:
<dependency>
<groupId>com.github.anthill-platform</groupId>
<artifactId>anthill-runtime-java</artifactId>
<version>0.1.7</version>
</dependency>