sync
This commit is contained in:
shenzuqiang 2026-03-16 16:52:22 +08:00
parent d751ec6c6d
commit bd8df9797f
2 changed files with 0 additions and 28 deletions

View File

@ -338,8 +338,6 @@ object UniAppUtils {
)
}
}
}
private fun getUniMPOpenConfiguration(): UniMPOpenConfiguration{

View File

@ -46,32 +46,6 @@ object UpdateUtils {
}
)
.down()
/*
applicationContext?.let {
AutoDownloadManager.startAutoDownload(it, url, destination,object: DownloadListener {
override fun onStart(totalSize: Long) {
onProgress(0)
}
override fun onProgress(
progress: Int,
current: Long,
total: Long
) {
onProgress(progress)
}
override fun onSuccess(file: File) {
onFinish(true, file.absolutePath)
}
override fun onError(e: Exception) {
onFinish(false, null)
}
})
}
*/
}
}