An Android library project that provides various common utilities. This project was developed in Android Studio.
1. Gradle dependency (Android Studio)
- Add the following to your
build.gradle
:
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.dream09:MagicUtils:v1.0'
}
2. Maven
- Add the following to your
pom.xml
:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.dream09</groupId>
<artifactId>MagicUtils</artifactId>
<version>v2.1</version>
</dependency>
3. Jar file only
- Get the latest release .jar file from the releases area
- Copy the MagicUtils-X.X.jar file into the
libs
folder of your Android project - Start using the library
If you wish to contribute please create a feature branch from the develop branch and name feature-yourfeature.