-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove usage of ktx
dependencies
#676
Comments
I encountered the same issue when adding Gitlive Firebase auth latest version: I had to add "firebase-common-ktx" and "firebase-auth-ktx" to the androidMain dependencies to fix it : mirzemehdi/KMPAuth#58:
|
Worked without using implementation(project.dependencies.platform("com.google.firebase:firebase-bom:33.7.0"))
implementation(libs.firebase.auth) firebase-auth = { module = "com.google.firebase:firebase-auth" } |
Since the Kotlin extensions (KTX) APIs have been added to their respective main modules, this library should also drop using
ktx
dependencies to avoid the end-users seeing warnings/issues like:Ref: https://firebase.google.com/docs/android/kotlin-migration
The text was updated successfully, but these errors were encountered: