android image_downloader插件无法在最新的Kotlin版本上编译

whlutmcx  于 2023-06-27  发布在  Android
关注(0)|答案(1)|浏览(97)

我最近更新了我的ext.Kotlin_version从1.7.x到1.8.22,插件image_downloader在编译Android时抛出以下错误:

file:*/image_downloader-0.31.0/android/src/main/kotlin/com/ko2ic/ima
gedownloader/ImageDownloaderPlugin.kt:332:17 'when' expression must be exhaustive, add necessary 'is Pending','is Successful' branches or 'else' branch instead

Execution failed for task ':image_downloader:compileDebugKotlin'.
m1m5dgzv

m1m5dgzv1#

这个问题似乎发生在Github上的版本尚未发布到pub上。因此,一个临时的解决方法是添加直接的git url来从git获取最新版本

image_downloader:
    git:
      url: https://github.com/ko2ic/image_downloader

pub上的当前版本是image_downloader:^0.31.0,而git包含image_downloader:联系我们

相关问题