您的位置:首页 > 移动开发 > Android开发

Error:Failed to resolve: com.android.support:support-annotations:26.0.2

2017-10-23 10:54 731 查看
异常信息记录:

Error:Failed to resolve: com.android.support:support-annotations:26.0.2

Install Repository and sync project
Open File
Show in Project Structure dialog



解决方法:

在项目的build.gradle里面最上层填写这样一句话:

configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:23.1.0'
}


最后附上一个简单的build.gradle为例:

apply plugin: 'com.android.application'

configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:23.1.0'

}
android {
compileSdkVersion 25
buildToolsVersion "26.0.2"

defaultConfig {
applicationId "com.dota.musicapp"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.jakewharton:butterknife:8.8.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐