> For the complete documentation index, see [llms.txt](https://adityabavadekar.gitbook.io/pinlog-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://adityabavadekar.gitbook.io/pinlog-docs/implementation-guide.md).

# Implementation Guide

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

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

Add the dependency

{% hint style="info" %}
*TAG :* [![TAG](https://camo.githubusercontent.com/5790da4721613f31d3ea7abdd3a61b4caeda2aeae379a7011788b17fc7a7c3cb/68747470733a2f2f6a69747061636b2e696f2f762f4164697479614261766164656b61722f50696e4c6f672e737667)](https://camo.githubusercontent.com/5790da4721613f31d3ea7abdd3a61b4caeda2aeae379a7011788b17fc7a7c3cb/68747470733a2f2f6a69747061636b2e696f2f762f4164697479614261766164656b61722f50696e4c6f672e737667)
{% endhint %}

```groovy
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'
   
```

{% hint style="info" %}
**Note :** The <mark style="color:blue;">`pinlog-activity`</mark> 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.
{% endhint %}

{% hint style="success" %}
Now that you are all set head over to the next page to commit your first log.
{% endhint %}
