Add test to ensure legacy storage access

This commit is contained in:
Manuel Fuhr 2021-10-26 10:13:43 +02:00
parent 236c65d8ed
commit d9b8f69f59
2 changed files with 53 additions and 0 deletions

View file

@ -17,6 +17,8 @@ android {
setProperty("archivesBaseName","BRouterApp." + defaultConfig.versionName)
minSdkVersion 14
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
sourceSets.main.assets.srcDirs += new File(project.buildDir, 'assets')
@ -99,6 +101,10 @@ dependencies {
implementation project(':brouter-expressions')
implementation project(':brouter-util')
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
task generateProfiles(type: Exec) {