blob: 4c5abd81305fa3ce46a857e07200968d3c1b4997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
group = 'com.android.tools'
archivesBaseName = 'uiautomatorviewer'
dependencies {
compile project(':base:ddmlib')
}
sourceSets {
main.resources.srcDir 'src/main/java'
}
sdk {
linux {
item('etc/uiautomatorviewer') { executable true }
}
mac {
item('etc/uiautomatorviewer') { executable true }
}
windows {
item 'etc/uiautomatorviewer.bat'
}
}
// configure the manifest of the buildDistributionJar task.
sdkJar.manifest.attributes("Main-Class": "com.android.uiautomator.UiAutomatorViewer")
|