Skip to content
Midhun Harikumar edited this page Jul 13, 2019 · 8 revisions

The latest versions of this library are distributed on Jitpack.io.

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

Version 3.0 Stable

dependencies {  
  implementation 'com.github.midhunhk:ae-apps-library:V3.0.2'  
}  

Version 4.0 Beta

All Library

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'
}

Specific Components

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"
}

JCenter

repositories {
  maven { 
    url  "http://dl.bintray.com/midhunhk/android-libraries"     
  }    
}    
dependencies {  
  implementation 'com.ae.apps:android-libraries:3.0.2'
}
Clone this wiki locally