在下面显示的 gradle 中,我可以在发布应用程序之前从代码测试实现'junit:junit:4.12'中删除吗?



在Android Studio中,我可以从代码中删除:

testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-
core:3.0.1'

发布应用程序?

dependencies {
 testImplementation 'junit:junit:4.12'
 androidTestImplementation 'com.android.support.test:runner:1.0.1'
 androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

是的,您可以移动它们而且不要忘记删除

 defaultConfig {
    applicationId "com.example.networksecurity"
    minSdkVersion 24
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    //testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

和测试文件夹(.. app src test((.. app src androidTest(

最新更新