PinLog 0.0.1
Initial release.
For Usage Information : Each function has been provided with usage info and documentation i.e. Kdoc
Implementation
Using Gradle :
Add
maven{ }
in your build.gradle(project)
allprojects {
repositories {
//Add this `maven` block
maven { url 'https://jitpack.io' }
}
}
Add the dependency
dependencies {
implementation 'com.github.AdityaBavadekar:PinLog:0.0.1'
}
Using Maven :
Add
repository
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add the dependency
<dependency>
<groupId>com.github.AdityaBavadekar</groupId>
<artifactId>PinLog</artifactId>
<version>0.0.1</version>
</dependency>