Implementation Guide
Add
maven{ }
in your build.gradle(project)
allprojects {
repositories {
//Add this `maven` block
maven { url 'https://jitpack.io' }
}
}
Add the dependency
dependencies {
// Refer the above badge for latest `TAG`.
implementation 'com.github.AdityaBavadekar.PinLog:pinlog:TAG'
//Or if you want a DebugLogsActivity for
//your app which shows list of logs add this instead
debugImplementation 'com.github.AdityaBavadekar.PinLog:pinlog-activity:TAG'
Now that you are all set head over to the next page to commit your first log.
Last updated