-
Notifications
You must be signed in to change notification settings - Fork 6
Distribution
Midhun Harikumar edited this page Jul 13, 2019
·
8 revisions
The latest versions of this library are distributed on Jitpack.io.
Add below code to root build.gradle file
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Add below dependency to project specific build.gradle
dependencies {
implementation 'com.github.midhunhk:ae-apps-library:V3.0.2'
}
You can use all of components from this library by using the below code.
dependencies {
implementation 'com.github.midhunhk.ae-apps-library:v4.0.1-alpha.1'
}
With Version 4.0 of the library, now there is the possibility to load only specific features based on your needs. Now you don't need to load the entire library.
dependencies {
def libAeAppsVersion = 'v4.0.1-alpha.1'
implementation "com.github.midhunhk.ae-apps-library:core:$libAeAppsVersion"
implementation "com.github.midhunhk.ae-apps-library:contacts-api:$libAeAppsVersion"
implementation "com.github.midhunhk.ae-apps-library:runtime-permissions:$libAeAppsVersion"
implementation "com.github.midhunhk.ae-apps-library:multi-contact:$libAeAppsVersion"
implementation "com.github.midhunhk.ae-apps-library:utilities:$libAeAppsVersion"
}
repositories {
maven {
url "http://dl.bintray.com/midhunhk/android-libraries"
}
}
dependencies {
implementation 'com.ae.apps:android-libraries:3.0.2'
}