Colton Idle
04/11/2023, 12:15 AMget
(Not enough information to infer type variable T)
private val myApi = get(MyApiService::class.java)
I'm also reading through the migration docs and it seems like I might need to use koin-core, but I do have it added already.
Any pointers?Jonas
04/11/2023, 8:02 AMprivate val myApi = get<MyApiService>()
or
private val myApi : MyApiService = get()
Colton Idle
04/11/2023, 9:22 AM