我添加了LeakCanary库到我的项目,我得到了这个错误消息:LeakCanary当前已禁用:测试类org.junit.test在类路径中找到。
我找到了一个答案,其中包含以下代码部分:
<resources>
<string name="leak_canary_test_class_name">assertk.Assert</string>
</resources>
但我不知道该把这个放哪儿。
我在我的builder中添加了这个。gradle,但问题无法解决。
configurations {
debugImplementation.exclude group: "junit", module: "junit"
}
1条答案
按热度按时间42fyovps1#
为了防止测试执行期间中断,将为测试生成禁用LeakCanary对于单元测试,最好创建单独模块