0

I am getting the following errors and the gradle build fails:

Failed to resolve: com.facebook.android:facebook-android-sdk:4.+
Failed to resolve: de.hdodenhof:circleimageview:1.3.0
Failed to resolve: com.viewpagerindicator:library:2.4.1

I have looked thorough almost all the solutions present on stackoverflow but nothing seems to work for me.

dependencies {

 compile 'com.viewpagerindicator:library:2.4.1'
 compile 'com.facebook.android:facebook-android-sdk:4.+'
 compile 'de.hdodenhof:circleimageview:1.3.0'
}

repositories {
    mavenCentral()
}

android {
  compileSdkVersion 23
  buildToolsVersion "24.0.2"
}

Can anyone help me please?

manini
  • 358
  • 1
  • 4
  • 14

1 Answers1

0

In project of android studio -> Open Module Settings -> tab dependency -> add item -> find valid version of library

user2930077
  • 135
  • 2
  • 9