在build.grade中添加存储库后出错

时间:2017-08-23 05:24:17

标签: android github repository build.gradle

我在build.grade中添加了一个存储库但是只要我点击"立即同步"它显示错误:

  

错误:无法解决:com.android.support:appcompat-v7:26.0.1       安装存储库和同步项目
打开文件
在项目结构中显示       对话       错误:无法解决:com.android.support:recyclerview-v7:26.0.1       安装存储库和同步项目
      打开文件
在项目结构中显示       对话框

这是我要添加的存储库

compile 'com.afollestad.material-dialogs:core:0.9.4.7'

我的build.grade(模块:app)

ext{
supportVersion = "26.0.0-alpha1"
   }

 dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-
     core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-
    annotations'
     })
     compile "com.android.support:appcompat-v7:${supportVersion}"
    compile "com.android.support:recyclerview-v7:${supportVersion}"
    testCompile 'junit:junit:4.12'
    compile "com.android.support:design:${supportVersion}"
    compile 'com.simplecityapps:recyclerview-fastscroll:1.0.16'
    compile 'com.github.bumptech.glide:glide:3.8.0'
    compile "com.android.support:palette-v7:${supportVersion}"
    compile 'com.afollestad.material-dialogs:core:0.9.4.7'
    }

删除我要添加的存储库后,我没有收到任何错误。 三江源。

1 个答案:

答案 0 :(得分:1)

希望使用完整的

 repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }