[download] Let gradle test runner execute instrumentation tests

This commit is contained in:
Torsten Grote 2022-04-26 09:42:39 -03:00
parent b6405f59e9
commit e0e7f19dab
No known key found for this signature in database
GPG Key ID: 3E5F77D92CF891FF
1 changed files with 4 additions and 1 deletions

View File

@ -90,7 +90,10 @@ kotlin {
android {
compileSdkVersion 30
sourceSets.main.manifest.srcFile('src/androidMain/AndroidManifest.xml')
sourceSets {
main.manifest.srcFile('src/androidMain/AndroidManifest.xml')
getByName("androidTest").java.srcDir(file("src/androidAndroidTest/kotlin"))
}
defaultConfig {
minSdkVersion 22
targetSdkVersion 25