Hey everyone should it be ``` android { defaul...
# android
a
Hey everyone should it be
Copy code
android {
    defaultConfig {
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
}
or
Copy code
android {
    defaultConfig {
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner4"
    }
}
or
Copy code
android {
    defaultConfig {
        testInstrumentationRunner "androidx.test.ext.junit.runners.AndroidJUnit"
    }
}
???
c
Mine is:
Copy code
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
a
OK cause all 4 seem to work 🙂 thanks