AS中解决Error:Execution failed for task ':app:preDebugAndroidTestBuild'.问题。
1、打开对应的app中的build.gradle文件
2、在build.gradle的dependencies依赖中增加如下配置信息
androidTestCompile('com.android.support:support-annotations:26.1.0') {
force = true
}
增加配置后的配置如下:
dependencies {
androidTestCompile('com.android.support:support-annotations:26.1.0') {
force = true
}
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:design:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
本文介绍了解决Android Studio中预Debug Android Test Build错误的方法。通过在build.gradle文件中添加特定依赖并设置force参数为true,可以有效解决此类构建问题。
1万+

被折叠的 条评论
为什么被折叠?



