7 May 2021 Coroutines Things to know about Flow’s shareIn and stateIn operators Become familiar with the shareIn and stateIn operators by example.
4 May 2021 Hilt Hilt is stable! Easier dependency injection on Android Hilt, Jetpack’s recommended dependency injection (DI) solution for Android apps, is already stable!
26 Mar 2021 Coroutines A safer way to collect flows from Android UIs Learn how to use the Lifecycle.repeatOnLifecycle API to safely collect flows from the UI layer in Android.
28 Feb 2021 Spanish Cómo la música ha influenciado mi carrera Entrevista sobre cómo la música, la trompeta 🎺 y Las Musas me han influenciado en mi carrera como ingeniero Android.
3 Feb 2021 Coroutines Bridging the gap between coroutines, JVM threads, and concurrency problems Learn more about how coroutines are executed in the JVM and concurrency problems.
21 Jan 2021 Hilt Using Hilt's ViewModelComponent ViewModelComponent is a component in the Hilt’s component hierarchy that follows the lifecycle of a ViewModel and allows scoping types to it.
16 Dec 2020 Coroutines Simplifying APIs with coroutines and Flow Learn how to create your own coroutine adapters and see how they work under the hood
24 Nov 2020 Hilt Migrating from Dagger to Hilt — Is it worth it? Consider whether or not you should migrate your Dagger app to Hilt
21 Jul 2020 Hilt Scoping in Android and Hilt Learn about scoping in Android and how that relates to scoping in Hilt
13 Jul 2020 Talks Coroutines Android Coroutines - How to manage async tasks in Kotlin State of coroutines on Android in 2020
9 Jul 2020 Hilt Hilt — Adding components to the hierarchy Get more flexibility in Hilt by adding your own components to the hierarchy
1 Jul 2020 Hilt Dagger Dagger and Hilt navigation support in Android Studio Easily navigate between Dagger and Hilt related code in Android Studio
10 Jun 2020 Hilt Dependency injection on Android with Hilt Learn about Jetpack’s recommended library for dependency injection
7 Apr 2020 Coroutines Coroutines & Patterns for work that shouldn’t be cancelled Best practices for work that needs to run beyond its current scope with an applicationScope!
11 Mar 2020 Coroutines Coroutines - First things first Learn about the most basics coroutines concepts
3 Mar 2020 Dagger Dagger code generation cheat sheets Have you ever wondered what Dagger does under the hood 🤔?
4 Dec 2019 Talks Coroutines Coroutines! Gotta catch 'em all! - KotlinConf 2019 All about cancellation and exceptions in coroutines
26 Nov 2019 Coroutines Lessons learnt using Coroutines Flow in the Android Dev Summit 2019 app Best practices we found when using Flow in the ADS 2019 app
6 Nov 2019 Dagger Dependency Injection guidance on Android — ADS 2019 Why dependency injection is important on Android and a new guide about it!
24 Oct 2019 Talks Coroutines Testing coroutines - Android Developer Summit 2019 How to test coroutines in 2019!
24 Oct 2019 Talks Dagger An opinionated guide to Dependency Injection on Android - Android Developer Summit 2019 Why dependency injection is important on Android and a new guide about it!
15 Oct 2019 Coroutines Testing two consecutive LiveData emissions in Coroutines Learn how to pause and resume a TestCoroutineDispatcher
30 Jul 2019 Dagger Dagger in Kotlin - Gotchas and Optimizations Dagger optimizations come with no cost! Add them and follow best practices
24 Mar 2019 Coroutines The suspend modifier — under the hood How is the compiler transforming the code to be able to suspend and resume the execution of coroutines?
19 Mar 2019 Coroutines Easy Coroutines in Android - viewModelScope Learn everything you should know about viewModelScope