repo.or.cz
/
uweb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add crontab example to sign in automatically
[uweb.git]
/
build.gradle
blob
fa664f00a553e5fd903bd00da2f106d0221a17bf
1
defaultTasks 'genApk'
2
task genApk() {
3
doFirst {
4
mkdir "build/outputs/apk/release"
5
def f = new File('build/outputs/apk/release/uweb.apk')
6
new URL('https://releases.pagure.org/uweb/uweb_latest.apk').withInputStream{ i -> f.withOutputStream{ it << i }}
7
}
8
}
9
10