apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
在Android Studio菜单栏中选择File -> Settings -> Build, Execution, Deployment -> Debugger -> Kotlin,将"Enable 'Load from classes'"选项打勾。
检查是否在app module的build.gradle文件中加入了以下配置:
debug {
testCoverageEnabled = true
}
如果以上方法解决不了问题,可以尝试以下步骤:
检查项目根目录下是否存在coverage.xml和jacoco.exec文件,如果没有则可以执行一次测试代码来生成。
尝试从1.4.10版本降级到1.4.0版本的Kotlin插件。
启动Clean Project清空构建文件,然后重启Android Studio。
如果以上方法仍无法处理问题,请检查是否最近更新了Android Studio或Kotlin插件。可能需要卸载并重新安装相关插件来解决该问题。