admin管理员组文章数量:1295937
I am trying to build a compose multiplatform but I cannot add the firebase libs and import FirebaseAuth
class.
I have added this in my lib.versions.toml
.
firebase-authentication = { group = "dev.gitlive", name = "firebase-auth", version.ref = "firebase-authentication"}
the I added in the build.gradle.kts
;
The gradle sync works but the FirebaseAuth is never exported if I add this:
androidMain.dependencies {
implementation(compose.preview)
implementation(libs.androidx.activitypose)
implementation(libs.firebase.authentication)
}
commonMain.dependencies {
implementation(compose.runtime)
implementation(compose.foundation)
implementation(compose.material3)
implementation(compose.ui)
but if I move implementation(libs.firebase.authentication)
in the commonMain, the gradle do not sync at all.
Any idew how to use firebauth-auth in a compose multiplatform project >?
本文标签: androidImpossible to use firebase in compose multiplatformStack Overflow
版权声明:本文标题:android - Impossible to use firebase in compose multi-platform - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741625634a2389063.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论