Can't add ViewPagerIndicator to app with Gradle Can't add ViewPagerIndicator to app with Gradle android android

Can't add ViewPagerIndicator to app with Gradle


You can check the maven repository or jcenter:

http://search.maven.org/#search%7Cga%7C1%7Ccom.viewpagerindicator

https://bintray.com/bintray/jcenter/com.viewpagerindicator%3Alibrary/view#files

There is a library artifact with 2.4.1, but it ISN'T an AAR file.

You have to use an alternative repomaven { url "http://dl.bintray.com/populov/maven" }, but it is important the order.

Change your script:

allprojects {    repositories {        maven { url "http://dl.bintray.com/populov/maven" }        jcenter()        mavenCentral()    }}