Gain a deeper understanding of Kotlin Coroutines in this Advanced tutorial for Android, by replacing common asynchronous programming methods, such as Thread, in an Android…
Android & Kotlin
Kotlin Coroutines Tutorial for Android: Getting Started
Sep 9 2019 · Article (30 mins)
…this Kotlin Coroutines tutorial, you’ll learn how to write asynchronous code just as naturally as your normal, synchronous code…
Android & Kotlin
Kotlin Coroutines: Fundamentals
Feb 14 2024 · Video Course (50 mins)
…responsive app is by leaving the UI thread as free as possible, letting all the hard work be done asynchronously by background threads. Kotlin Coroutines by Tutorials will teach you the techniques you need to solve common programming problems using asynchronous programming…
Kotlin coroutines allow you to simplify your asynchronous code and make it much more readable. You'll learn the difference between threads and coroutines and see examples of coroutines…
Android & Kotlin
Kotlin Flow for Android: Getting Started
Jun 17 2020 · Article (30 mins)
In this tutorial, you’ll learn about the basics of Kotlin Flow, and you’ll build an Android app that fetches weather forecast data using…
Android & Kotlin
SQLDelight in Android: Getting Started
Aug 3 2021 · Video Course (1 hr, 25 mins)
Learn about the integration library with Kotlin Coroutines, which allow SQLDelight’s Query type to be converted into Flows or suspending functions. Apply this extension to the core API of the sample…
Android & Kotlin
Kotlin Coroutines: In Depth
Jan 28 2020 · Video Course (1 hr, 18 mins)
Learn how to implement coroutines in a real-world example of an Android application, with structured layers and decoupled dependencies. You'll see how…
Multiple Domains
Coroutines in Kotlin with Filip Babić – Podcast S10 E04
Apr 8 2020 · Article (1 min)
…continue out asynchronous journey on the Android side with Filip Babić as we delve into Kotlin Coroutines. Later Alex gives us a teaser for later in the season as he gets his first taste of Flutter…
Android & Kotlin
Android Networking: Beyond the Basics
Sep 8 2022 · Video Course (39 mins)
Remove the Callback object from Retrofit, and wrap calls in Kotlin Coroutines to simplify the code and make it easier to understand…
Multiple Domains
Android Networking With Kotlin Tutorial: Getting Started
Apr 6 2020 · Article (30 mins)
…wrap the return value in Call anymore. This transforms the functions into coroutines. So simple! Next, open RepositoryRetriever.kt. You’ve modified GithubService to use Kotlin coroutines, so you now need to mark getRepositories with suspend. Add suspend before this function to fix the error. However, you won’t need…
Android & Kotlin
Leverage Coroutines in Android with Concurrency Essentials
Jun 25 2024 · Article (15 mins)
Creating a performant network enabled app is easier than ever in modern Android development. This article covers some of the fundamental aspects of using coroutines…
Android & Kotlin
Our Top 5 Video Courses for Beginning Android Development
Oct 20 2020 · Article (5 mins)
…asynchronous stream library from JetBrains, the company behind the Kotlin language. Sharing many similarities with Rx streams, Kotlin Flow is built on top of Kotlin Coroutines. Get started by learning the concepts and usage patterns for the Flow API within IntelliJ IDEA projects. Then, see Flow in action…
Android & Kotlin
Concurrency with Coroutines in Android
Jun 5 2024 · Multimodal Module (1 hr, 45 mins)
…changes. Before you start coding, take a look at two different approaches to concurrency in Android. They were popular before the introduction of Kotlin Coroutines. RxJava The first one is RxJava. It’s a library that implements reactive extensions and the observer pattern. An observer is a callback invoked when…
…three brand new Android books, we’re also pleased to announce updates for two of our existing Android books: 4) Kotlin Coroutines by Tutorials, Second Edition The second edition of this book includes two new chapters: Beginning with Coroutine Flow: In this chapter, you’ll learn about Coroutine Flows…
Android & Kotlin
Mock a Call That Uses Kotlin Coroutines
Oct 15 2019 · Lesson
Coroutines are an easy way to handle asynchronous data. Learn how to mock suspending calls.
Android & Kotlin
Coroutines with Lifecycle and LiveData
Jun 1 2020 · Article (20 mins)
In this tutorial, you’ll build an Android app that uses coroutines with LiveData objects and lifecycle-aware CoroutineScopes.