gpt4 book ai didi

android - 无法解决 Gradle 中的 Mockito 依赖项

转载 作者:行者123 更新时间:2023-11-28 21:02:20 28 4
gpt4 key购买 nike

尽管我看到了两篇不同的帖子,其中包含此错误消息,但对我没有任何作用:

Error:(25, 17) Failed to resolve: org.mockito:mockito-core:1.10.19

我尝试使用 compile、androidTestCompile 和 testCompile 更改 Mockito 依赖项,并在全局 Gradle 文件中尝试将 Maven 添加为存储库,但没有成功。

编辑:我正在使用 Android Studio 2.1

这是我的应用程序 build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.0"

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

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.1'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'

}

这是全局性的

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

buildscript {
repositories {
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'

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

allprojects {
repositories {
jcenter()
}
}

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

最佳答案

我找到了解决方案。在大多数教程中都是为了添加 mockito-core 而编写的。相反,添加 mockito-all 解决了我的问题,使 gradle 编译没有错误

关于android - 无法解决 Gradle 中的 Mockito 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40008190/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com