I've just switched from Eclipse to Android Studio, and I'm having some problems with a project of mine that uses ViewPagerIndicator
This is the Gradle code:
repositories {
mavenCentral()
}
dependencies {
compile 'com.viewpagerindicator:library:2.4.1'
compile 'com.android.support:support-v4:19.0.+'
compile 'com.android.support:appcompat-v7:19.0.+'
}
When I try to build the project, Android Studio returns me this error:
LoadViewPagerTask.java
Error:Error:line (30)error: package com.viewpagerindicator does not exist
Error:Error:line (82)error: cannot find symbol class TitlePageIndicator
Error:Error:line (82)error: cannot find symbol class TitlePageIndicator
In other words, the library was not imported. Any solution? Thank you for your attention.