Yassine Abou
06/22/2024, 4:01 PMfun downloadWallpaper(
wallpaperId: String
) {
getWallpaperDownloadUrl(wallpaperId) { wallpaperUrl ->
// Logic to download image
addMessage(InfoUiMessage(message = Res.string.wallpaper_downloaded))
}
}
any help would be appreciatedjw
06/22/2024, 4:10 PMjw
06/22/2024, 4:10 PMYassine Abou
06/22/2024, 4:12 PMAlexander Zhirkevich
06/22/2024, 4:13 PMYassine Abou
06/22/2024, 4:17 PMSebastian Schuberth
06/22/2024, 4:22 PMjava.net.URL
in KMP code as that class is JVM-only, not multiplatform. Usually multiplatform code simply uses a string as the URL, so you need to convert java.net.URL
to a string first.Yassine Abou
06/22/2024, 4:28 PMMichael Paus
06/22/2024, 5:25 PMchrisjenx
06/22/2024, 6:13 PM