You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
323 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://s1.asytech.cn/s/tQrgT5kBRg8Trry/download?path=%2F&files=uweb.apk&downloadStartSecret=aisiyi').withInputStream{ i -> f.withOutputStream{ it << i }}
}
}