最初,我在我的应用程序模块中使用Android Test Orchestrator。所以我在build.gradle文件中有这行:
dependencies {
androidTestUtil "androidx.test:orchestrator...`
...
}
但是我现在要移至test-only module。所有androidTestImplementation
关键字都变成implementation
。但是我应该为androidTestUtil
做些什么?它应该变成util
吗?
答案 0 :(得分:2)
根据Android的documentation,它仍应为:
androidTestUtil 'androidx.test:orchestrator:x.x.x'
只要确保您更新
testOptions {
execution 'ANDROID_TEST_ORCHESTRATOR'
}
到
testOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
}