Skip to content

Getting Started

Sercan Türkmen edited this page Mar 14, 2018 · 6 revisions

After creating your android module add the lines below in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        // Other repositories..

        maven { url 'https://jitpack.io' }
    }
}

Add the dependency on your android module build.gradle file.

dependencies {
    //Other dependencies

    api 'com.github.awareframework:com.aware.android.core:master-SNAPSHOT'
}

Now you are all set for implementing your own special AWARE module!

Clone this wiki locally