markchous / MHKtx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MIT LicencePRs Welcome

MHKtx

MHKtx was inspired by the constant need of the same extensions being used in every Android project I work with. This is for Android only as of right now, with no plans to branch out anytime this future. This could change, stay tuned. Please feel free to contribute your own extensions to the project if they are not already included.

Install Instructions

Gradle:
Step 1. Add the JitPack repository to your build file
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.markchous:MHKtx:{version}'
	}

Maven:
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.markchous</groupId>
	    <artifactId>MHKtx</artifactId>
	    <version>{version}</version>
	</dependency>

Examples

// TODO: Coming soon...

About

License:MIT License


Languages

Language:Kotlin 100.0%