i\'m trying to get Jake Wharton\'s ViewPagerIndicator working with Android Studio but unfortunately it won\'t work.
I downloaded the .aar file from here and included it
As of today (March 2016), Jitpack's maven repos work for me: https://jitpack.io/#JakeWharton/ViewPagerIndicator/2.4.1/aar
In root build.gradle
:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
In project build.gradle
:
dependencies {
compile 'com.github.JakeWharton:ViewPagerIndicator:2.4.1'
}