Skip to content

SpazeDog/rootfw-stdlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RootFW StdLib

Extension library for RootFW

This library depends on RootFW >= 5.x

Checkout the Documentation Page for further info

Include Library


Maven

Reflect Tools is available in Maven respository at Bintray and can be accessed via jCenter.

dependencies {
    compile 'com.spazedog.lib.rootfw:rootfw-stdlib:$version'
}

Android Studio

First download the rootfw-stdlib-release.aar file.

Place the file in something like the libs folder in your module.

Open your build.gradle file for your module (not the main project version).

dependencies {
    compile(name:'rootfw-stdlib-release', ext:'aar')
}

repositories {
    flatDir {
        dirs 'libs'
    }
}