mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 20:34:30 +00:00
89aa3e1208
The latest version of uiautomator2 seems to have an issue with google slides not being able to interact with any elements on the slide therefore we are using a slightly older version which doesn't have this issue.
37 lines
1022 B
Groovy
37 lines
1022 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
def packageName = "com.arm.wlauto.uiauto.googleslides"
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.3"
|
|
defaultConfig {
|
|
applicationId "${packageName}"
|
|
minSdkVersion 18
|
|
targetSdkVersion 25
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
applicationVariants.all { variant ->
|
|
variant.outputs.each { output ->
|
|
output.outputFile = file("$project.buildDir/apk/${packageName}.apk")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support.test:runner:0.5'
|
|
compile 'com.android.support.test:rules:0.5'
|
|
// Using older version of uitautomator as the latest version can't find canvas elements.
|
|
compile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
|
|
compile(name: 'uiauto', ext:'aar')
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|