1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-04-17 00:00:56 +01:00
Luis Machado 1a308b6e39 [framework/uiauto] Revert changes to original uiauto library
We don't want to change the old uiauto library at the moment. We will
update uiauto along with each workload using it.
2024-07-26 15:42:26 +01:00

19 lines
539 B
Groovy

apply plugin: 'com.android.library'
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 18
targetSdkVersion 28
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.test:runner:0.5'
implementation 'com.android.support.test:rules:0.5'
implementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
}