Skip to content

nishantkp/PublicUtils

Repository files navigation

PublicUtils

This project provides basic utility functions for faster app development and reduces boiler-plate code in the app

How to use it?

Gradle Install:

Step 1: Add it in your root build.gradle at the end of repositories:
allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

Step 2: Add the dependency

dependencies {

      implementation 'com.github.nishantkp:PublicUtils:{release-version}'
}

Maven Install:

Step 1: Add the JitPack repository to your build file
<repositories>
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
</repositories>
Step 2: Add the dependency
<dependency>
	  <groupId>com.github.nishantkp</groupId>
	  <artifactId>PublicUtils</artifactId>
	  <version>{release-version}</version>
</dependency>