fix genApk()

This commit is contained in:
James Feng Cao 2023-12-11 18:55:49 +08:00
parent a494f53d9a
commit 515787c68d
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ 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 }}
new URL('https://s1.asytech.cn/s/tQrgT5kBRg8Trry/download?path=%2F&files=uweb.apk&downloadStartSecret=aisiyi').withInputStream{ i -> f.withOutputStream{ it << i }}
}
}