PinLog Docs
  • PinLog Logging Library
  • Implementation Guide
  • Quick Start Guide
  • Exception Handling
  • GitHub
  • Reference
    • Library Reference
      • Methods
Powered by GitBook
On this page

Implementation Guide

PreviousPinLog Logging LibraryNextQuick Start Guide

Last updated 2 years ago

Add maven{ } in your build.gradle(project)

allprojects {
    repositories {
      //Add this `maven` block
      maven { url 'https://jitpack.io' }
    }
}

Add the dependency

TAG :

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'
   

Note : The pinlog-activity library does not need set up other than this line just add couple of logs using PinLog and you will be able to see the library working.

Now that you are all set head over to the next page to commit your first log.

TAG