An easy open source Android Native Game FrameWork
JustWeEngine
An easy open source Android Native Game FrameWork.
How To Use?
-
Import Engine's module as Library.
-
Import engine.jar in your project from "/jar".
-
With Gradle:
- Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
allprojects { repositories { ... maven { url "https://jitpack.io" } } }
- Step 2. Add the dependency
dependencies { compile 'com.github.lfkdsk:JustWeEngine:v1.13' }
- Step 1. Add the JitPack repository to your build file
-
With Maven:
- Step 1. Add the JitPack repository to your build file
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
- Step 2. Add the dependency
<dependency> <groupId>com.github.lfkdsk</groupId> <artifactId>JustWeEngine</artifactId> <version>v1.13</version> </dependency>