无法解决

时间:2019-04-17 13:04:19

标签: android gradle

当我要构建项目时,它给我一个领域来解决一些回购之类的问题

无法解决:multidex 打开文件

无法解决:浓缩咖啡 打开文件

无法解决:亚军 打开文件

无法解决:multidex仪器 打开文件

无法解决:监控 打开文件

无法解决:支持注释 打开文件

无法解决:espresso-idling-resource 打开文件

这是我的礼物

NSObjectProtocol

这是应用程序gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {

        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'
        //classpath 'com.google.gms:google-services:3.0.0'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {

        // google() //added this
        jcenter()
        google()
        // google()
        maven { url "https://jitpack.io" }
//mavenCentral()
        //google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

1 个答案:

答案 0 :(得分:-1)

您缺少一些依赖项。您应该尝试像添加它们

// https://mvnrepository.com/artifact/androidx.test.espresso/espresso-core compile group: 'androidx.test.espresso', name: 'espresso-core', version: '3.1.0-alpha1'

对所有缺少的依赖项执行此操作。 您可以在Maven Repo

上找到Maven和Gradle依赖项