mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-02-24 13:58:34 +00:00
The version of gradle being used was out of date, update to a later version to fix building of uiauto apks.
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'
|
|
}
|