Joe Roskopf
Joe's Android Blog

Joe's Android Blog

Follow
Follow
homebadges
Tag

coroutines

#coroutines

More content

Read more stories on Hashnode


Articles with this tag

Better Stack Traces with Coroutines

Apr 10, 20237 min read

Have you ever encountered a stack trace involving coroutines that made you scratch your head in confusion? If so, you're not alone. Coroutines can...

Better Stack Traces with Coroutines

Replacing ViewModelScope In Your ViewModels to Better Test Coroutines

Apr 5, 20235 min read

Android Architecture Components (AAC) provides several libraries that help you design robust, testable, and maintainable apps. One of the most...

Replacing ViewModelScope In Your ViewModels to Better Test Coroutines

Dynamic Proxies in Kotlin with Coroutines

Apr 3, 20236 min read

One of the features that make Kotlin stand out is its support for coroutines. Coroutines allow developers to write asynchronous code in a sequential...

Dynamic Proxies in Kotlin with Coroutines

Retryable StateFlow

Mar 24, 20232 min read

A common pattern used to observe the state of a feature can look something like this (borrowed from NowInAndroid): ViewModel.kt val uiState:...

Retryable StateFlow