Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 838 Bytes

File metadata and controls

42 lines (31 loc) · 838 Bytes

AndroidUtility

This utility library contains a handfull of great methods for Android Developers. Documentation will be out soon. :)

Get Started

Download

You can download a jar from GitHub's [releases page][1].

Or use Gradle:

Put this code under Project level build.gradle file:

  allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Put this code under App Level build.gradle file:

  dependencies {
	        implementation 'com.github.AnkitVerma8584/AndroidUtility:1.0.1'
	}

Or Maven:

<dependency>
  <groupId>com.github.AnkitVerma8584</groupId>
  <artifactId>android-utility-library</artifactId>
  <version>1.0.6</version>
</dependency>