Skip to content

PinLog 0.0.1

Compare
Choose a tag to compare
@AdityaBavadekar AdityaBavadekar released this 26 May 10:53
· 51 commits to master since this release
b64fe6e

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>

View Full Changelog