android / codelab-kotlin-coroutines

Kotlin Coroutines codelab
Apache License 2.0
552 stars 268 forks source link

"Type inference failed" error in "6. Building logic with LiveData" #115

Open naco-siren opened 3 years ago

naco-siren commented 3 years ago

image

Need to explicitly specify the return type for getPlantsWithGrowZone From:

fun getPlantsWithGrowZone(growZone: GrowZone) = liveData {

To:

fun getPlantsWithGrowZone(growZone: GrowZone) : LiveData<List<Plant>> = liveData {