Android Mirror SDK - Issues installing

On the github page, I am having issues with 1. Installation.

After following the instructions on this step, I am getting the following error from Android Studio:

Error:(34, 13) Failed to resolve: com.estimote:display-sdk:0.1.5

Any ideas?

Make sure you added Estimote maven repository it in allprojects section, not in buildscript. It is a library that is compiled into your app, not a gradle plugin.

allprojects {
    repositories {
        maven {
            url  "http://estimote.bintray.com/android"
        }
        google()
        jcenter()
    }
}

Managed to figure this one out, been a while since I’ve been assigned to Android - thanks!