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