作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
android {
...
testBuildType "deviceTest"
buildTypes {
debug {
// Using 10.0.2.2 (the desktop's localhost), as the app normally runs on an Emulator
// in debug mode.
buildConfigField "String", "BACKEND_URL", '"http://10.0.2.2"'
buildConfigField "Integer", "PORT", "8080"
applicationIdSuffix ".debug"
}
// Use local host for testing, for MockWebServer
deviceTest {
initWith debug
buildConfigField "String", "BACKEND_URL", '"http://localhost"'
}
release {
...
}
}
}
就像谷歌文档暗示的那样 here .但是,这会导致单元测试无法访问测试依赖项(如 JUnit),因此测试无法运行。
最佳答案
我在 AS 3.1.3 上解决了这个问题。
问题是 Build Variant 和 testBuildType 不匹配。因此,在将 testBuildType 添加到您的 gradle 文件后,转到“构建 -> 选择构建变体”并为您的应用选择相同的变体。
在正确运行 androidTest 之前,您可能还需要设置签名 key 或解决混淆问题,但现在应该可以访问依赖项。
可以在此处跟踪更多详细信息: https://issuetracker.google.com/issues/36995546
关于java - android testBuildType 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44368130/
android { ... testBuildType "deviceTest" buildTypes { debug { // Using 10.0.2.2 (the
我的应用程序有 2 种构建类型:调试和发布。 我想对两种构建类型执行测试。 但目前只测试了一种Build Type。默认情况下它是调试构建类型,但这可以重新配置:安卓 { ... testBuildT
testBuildType 似乎默认设置为 debug。当我们在 android studio 中更改 Activity 构建变体时,Espresso 测试将不起作用,我们需要在 Gradle 中手动
我是一名优秀的程序员,十分优秀!