mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-04-17 00:00:56 +01:00
We don't want to change the old uiauto library at the moment. We will update uiauto along with each workload using it.
19 lines
539 B
Groovy
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'
|
|
}
|