mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 20:34:30 +00:00
36 lines
932 B
Groovy
36 lines
932 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
def packageName = "com.arm.wlauto.uiauto.googleplaybooks"
|
|
|
|
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'
|
|
compile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
|
|
compile(name: 'uiauto', ext:'aar')
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|