vishnurajeevan
07/27/2024, 6:17 PM@Inject
class AuthService(private val auth: FirebaseAuth) {
...
}
---
@Component
abstract class AppComponent(
) : LoginCoordinates.LoginScreenComponent {
@Provides
fun firebaseAuth(): FirebaseAuth = Firebase.auth
companion object
}
---
getting the following compiler error:
e: [ksp] Cannot find an @Inject constructor or provider for: dev.gitlive.firebase.auth.FirebaseAuth
/Volumes/repos/dwak/tripeated/composeApp/src/commonMain/kotlin/service/AuthService.kt:10: service.AuthService(auth: dev.gitlive.firebase.auth.FirebaseAuth)