这个问题通常是在使用Espresso库进行测试时出现的。该问题通常是由新版本的Android Support库引起的。为了解决这个问题,可以在build.gradle文件中添加以下依赖项:
androidTestImplementation 'androidx.test:core:1.0.0'
这是因为Espresso现在需要依赖androidx.test库。
完整的build.gradle文件示例:
android { compileSdkVersion 28 defaultConfig { applicationId "com.example.myapplication" minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" }
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test:runner:1.1.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' androidTestImplementation 'androidx.test:core:1.0.0' }