Skip to content

Getting Started

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

Here you can find information on how to extend this core to make your own modules using AWARE core. Modules are usually meant to be sensors.

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