Merge branch 'dev_robotaxi-d_240401_6.4.0' into dev_robotaxi-d_240401_6.4.0_yyk

# Conflicts:
#	app/script/vehicleFlavors/C1.gradle
This commit is contained in:
yangyakun
2024-04-15 14:54:13 +08:00
82 changed files with 1803 additions and 968 deletions

View File

@@ -84,4 +84,13 @@ object DownloadUtils {
}
.launchIn(scope)
}
fun getAllDownloadRecords(): List<Pair<String, String>> {
if (Downloader.hasInit()) {
return runBlocking {
Downloader.getAllDownloadRecords() ?: emptyList()
}
}
return emptyList()
}
}