Error:(23, 13) Failed to resolve: de.hdodenhof:circleimageview:2.0.0
See original GitHub issueHi, I am having failed to resolved error in my android studio project, here’s my build.gradle settings,
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.0'
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "my.package.name.appname"
minSdkVersion 9
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile files('src/main/Vuforia.jar')
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'de.hdodenhof:circleimageview:2.0.0'
}
Issue Analytics
- State:
- Created 8 years ago
- Comments:22 (5 by maintainers)
Top Results From Across the Web
Error:(24, 13) Failed to resolve: com.android.support ...
I am new to Android,i installed Android Studio 1.4.1 ,i am getting following errors.how may i resolve these error? Gradle Sync Error:(24, 13)...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I met the same issue just now, and this is the solution, hope it helps:
Is jcenter configured in your root build.gradle?