Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 762 Bytes

README.md

File metadata and controls

41 lines (36 loc) · 762 Bytes

andriod-utils

Templates and boilerplate code for most used components in Android.

Installation

Gradle:

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.CrinoidTechnologies:andriod-utils:v0.5.1'
	}

Maven:

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Step 2. Add the dependency

	<dependency>
	    <groupId>com.github.CrinoidTechnologies</groupId>
	    <artifactId>andriod-utils</artifactId>
	    <version>v0.5.1</version>
	</dependency>