Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 552 Bytes

File metadata and controls

30 lines (24 loc) · 552 Bytes

Installing Pro Tool Tutorial

Add it to your build.gradle with:

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

and:

dependencies {
    implementation 'com.github.dotrinhdev:protool:3.0'
}

More version

https://jitpack.io/#dotrinhdev/protool

Adding a sample app

If you add a sample app to the same repo then your app needs to have a dependency on the library. To do this in your app/build.gradle add:

    dependencies {
        compile project(':protool')
    }