Search code examples
androidgradlepublishing

In my gradle shown below, can I remove from code testImplementation 'junit:junit:4.12' before publishing application?


In android studio, can I remove from code:

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'

before publishing application?

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'

}

Solution

  • yes, you can move them and don't forget remove

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

    and test folder(..\app\src\test)(..\app\src\androidTest)