trying a simple example: ```@Inject class AuthSer...
# kotlin-inject
v
trying a simple example:
Copy code
@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:
Copy code
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)