此错误会阻止在纯 Java/Kotlin 项目中使用 firebase-admin。是否有已知的修复/临时方案?
运行.jar后出现错误:
Error: Could not find or load main class MainKt
看起来问题是因为 firebase 出现的:
implementation("com.google.firebase:firebase-admin:9.2.0")
将其添加到空项目中会出现此错误,而一切正常 没有这种依赖性。
将 Java 从 17 更新到 19 并添加后似乎没问题
exclude("META-INF/*.SF")
exclude("META-INF/*.DSA")
exclude("META-INF/*.RSA")