虽然我看到两个不同的帖子有这个错误消息但没有任何关系:
错误:(25,17)无法解决:org.mockito:mockito-core:1.10.19
我尝试使用compile,androidTestCompile和testCompile更改Mockito依赖项,并在全局Gradle文件中尝试将Maven添加为存储库但无效。
编辑:我使用的是Android Studio 2.1
这是我的app 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
}
答案 0 :(得分:2)
我找到了解决方案。 在大多数教程中都是为了添加mockito-core而编写的。 而是添加mockito-all修复我的问题,使gradle编译没有错误
答案 1 :(得分:0)
如果要在JUnit 5中使用Mockito,mockito-all将无用。
相反,请确保将mavenCentral添加到全局gradle文件中的存储库列表中。
喜欢:
BufferedWriter writer = new BufferedWriter( new FileWriter("file.txt", true));
BufferedReader reader = new BufferedReader( new FileReader("file.txt"));
String amount;
amount = reader.readLine();
int amount1 = Integer.parseInt(amount);
amount1 = amount1 + 1;
String amount2 = String.valueOf(amount1);
amount = amount.replace(amount, amount2);
writer.write(amount);