You can also use Gradle or Maven with JitPack to build directly off a snapshot, branch, or commit of this repository.
For example, to build the latest version, use this setup for Gradle:
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'com.github.ammerzon:RxLeJOS:master-SNAPSHOT'
}
Use this setup for Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.ammerzon</groupId>
<artifactId>RxLeJOS</artifactId>
<version>master-SNAPSHOT</version>
</dependency>
Learn more about building this project with JitPack here.