codelab-kotlin-coroutines
codelab-kotlin-coroutines copied to clipboard
Kotlin Coroutines codelab
TitleDao.java:15: Not sure how to handle insert method's return type. public abstract java.lang.Object insertTitle(@org.jetbrains.annotations.NotNull() TitleDao.java:17: Type of the parameter must be a class annotated with @Entity or a collection/array of...
In Step 5 page: https://developer.android.com/codelabs/kotlin-coroutines#4 > One second after the user clicks the main view, it requests a snackbar. > `Wait one second then display a snackbar.` > `_snackbar.value can...
should the code snippet 'growZone.mapLatest' be 'growZoneFlow.mapLatest' in section https://developer.android.com/codelabs/advanced-kotlin-coroutines#13?
In Step 3, Inline modifier is used for GrowZone class. It is better to update the code to be compatible with latest Kotlin version.
Typo in step 11 of "Advanced Kotlin coroutines codelab": https://developer.android.com/codelabs/advanced-kotlin-coroutines#10 Typo in this phrase (the word "and" is duplicated): > So if all we were doing was calling suspend functions...
https://developer.android.com/codelabs/kotlin-coroutines?continue=https%3A%2F%2Fdeveloper.android.com%2Fcourses%2Fpathways%2Fandroid-coroutines%23codelab-https%3A%2F%2Fdeveloper.android.com%2Fcodelabs%2Fkotlin-coroutines#5
The page is not convenient as I cant get to access the writting on the right side of the screen... The whole right side is gone to the edges and...
One page 11 of the Advanced Coroutines with Kotlin Flow and LiveData codelab, it says to add the following code to replace customSortFlow to demonstrate how the combine operator works...
In the update repository in the section 10 say: fun getPlantsWithGrowZoneFlow(growZoneNumber: GrowZone): Flow { return plantDao.getPlantsWithGrowZoneNumberFlow(**_growZoneNumber_**.number) } the correct is: fun getPlantsWithGrowZoneFlow(growZoneNumber: GrowZone): Flow { return plantDao.getPlantsWithGrowZoneNumberFlow(**_growZone_**.number) }