Skip to content
Jason Feinstein edited this page Nov 22, 2016 · 3 revisions

SRML uses jitpack.io for distribution, so you'll need to add it to your project's root build.gradle repository list if it's not already there:

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Next, simply add SRML to your app module's build.gradle dependency list:

dependencies {
    compile 'com.github.jasonwyatt:SRML:0.6.0'
}
Clone this wiki locally