mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 04:21:17 +00:00
bfb9dd2c43
The create command can now be used to create workloads for the various types.
34 lines
877 B
Groovy
34 lines
877 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 18
|
|
buildToolsVersion '25.0.0'
|
|
defaultConfig {
|
|
applicationId "${package_name}"
|
|
minSdkVersion 18
|
|
targetSdkVersion 25
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
applicationVariants.all { variant ->
|
|
variant.outputs.each { output ->
|
|
output.outputFile = file("$$project.buildDir/apk/${package_name}.apk")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
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'
|
|
}
|
|
}
|