在Android Studio中使用Gradle构建的错误

时间:2017-04-26 13:49:17

标签: android gradle

每次加载项目时,我都会收到以下错误,并且我已尝试在互联网上找到的所有内容来解决这些错误,例如

  1. 删除用户文件夹中的.gradle文件,让android再次构建它。
  2. 我已经尝试了重新验证缓存并重新启动它。
  3. 卸载旧版本后重新下载Android Studio。
  4. 我尝试了许多帮助过很多人的导师,但它仍然不适合我。基本上它是我的全部依赖。昨天我开了一个朋友项目,把它放在他的演讲上为演讲者演示,但它所做的就是毁掉我的android工作室。有人可以帮忙吗?

      

    错误:(33,13)无法解决:com.android.support:support-vector-drawable:25.0.1   在File中安装Repository并同步projectShow   在“项目结构”对话框中显示

         

    错误:(24,24)无法解决:com.android.support.test.espresso:espresso-core:2.2.2   安装存储库和同步项目   在“项目结构”对话框中显示

         

    错误:(24,24)无法解决:com.android.support.test.espresso:espresso-core:2.2.2   安装存储库和同步项目   在“项目结构”对话框中显示

     apply plugin: 'com.android.application'
    
     android {
    compileSdkVersion 25
    buildToolsVersion "23.0.1"
    defaultConfig {
        applicationId "ie.wit.fitnessmadeeasy"
        minSdkVersion 19
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 
        "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
         }
         buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 
           'proguard-rules.pro'
        }
      }
    }
    
    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    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:25.0.1'
    compile 'com.android.support:design:25.0.1'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.1'
    compile 'com.google.android.gms:play-services-maps:8.4.0'
    compile 'com.android.support:support-vector-drawable:25.0.1'
    testCompile 'junit:junit:4.12'
    }
    

1 个答案:

答案 0 :(得分:0)

您需要安装支持存储库,如here所述:

  1. 启动Android SDK Manager。
  2. 在SDK Manager窗口中,滚动到Packages列表的末尾,找到Extras文件夹,如有必要,展开以显示其内容。
  3. 选择Android支持资源库项目。
  4. 单击“安装包...”按钮。