mirror of
https://github.com/torappinfo/uweb.git
synced 2025-01-15 00:20:56 +01:00
11 lines
272 B
Groovy
11 lines
272 B
Groovy
defaultTasks 'genApk'
|
|
task genApk() {
|
|
doFirst {
|
|
mkdir "build/outputs/apk/release"
|
|
def f = new File('build/outputs/apk/release/uweb.apk')
|
|
new URL('https://releases.pagure.org/uweb/uweb_latest.apk').withInputStream{ i -> f.withOutputStream{ it << i }}
|
|
}
|
|
}
|
|
|
|
|