About 232,000 results
Open links in new tab
  1. Kotlin coroutines on Android

    Jun 6, 2024 · A coroutine is a concurrency design pattern that you can use on Android to simplify code that executes asynchronously. Coroutines were added to Kotlin in version 1.3 and are based on established concepts from other languages.

  2. Coroutines | Kotlin Documentation - Kotlin Programming …

    Oct 18, 2022 · When creating server-side, desktop, or mobile applications, it's important to provide an experience that is not only fluid from the user's perspective, but also scalable when needed. Kotlin solves this problem in a flexible way by providing coroutine support at the language level and delegating most of the functionality to libraries.

  3. Improve app performance with Kotlin coroutines - Android Developers

    Mar 7, 2023 · Kotlin coroutines enable you to write clean, simplified asynchronous code that keeps your app responsive while managing long-running tasks such as network calls or disk operations. This topic provides a detailed look at coroutines on Android. If you're unfamiliar with coroutines, be sure to read Kotlin coroutines on Android before reading this ...

  4. Use Kotlin coroutines with lifecycle-aware components

    Feb 10, 2025 · Kotlin coroutines provide an API that enables you to write asynchronous code. With Kotlin coroutines, you can define a CoroutineScope, which helps you to manage when your coroutines should run. Each asynchronous operation runs within a particular scope.

  5. Mastering Kotlin Coroutines with Practical Examples

    May 22, 2023 · To work with coroutines, Kotlin provides three basic building blocks: launch, async, and runBlocking. launch is used to fire and forget coroutine. It's perfect for cases where you don't need...

  6. Coroutines on Android (part I): Getting the background

    Apr 30, 2019 · Learn how to use coroutines to do real work like using a database or making a network request. What problems do coroutines solve? Kotlin coroutines introduce a new style of concurrency that...

  7. Advanced Kotlin Coroutine Cheat sheet (for Android Engineer)

    Jul 26, 2024 · Master inter-coroutine communication in Android: A complete guide to Kotlin Channels, from basic concepts to production patterns.

  8. Asynchronous Programming and Kotlin Coroutines in Android

    Feb 20, 2025 · Coroutines were added to Kotlin in version 1.3 and are based on established concepts from other languages. Kotlin coroutines introduce a new style of concurrency that can be used on Android to simplify async code. The official documentation says that coroutines are lightweight threads.

  9. Mastering Coroutines in Android | Towards Dev

    Introduction. In the modern Android development landscape, Kotlin Coroutines have become the go-to solution for managing asynchronous operations. Whether you’re fetching data from a remote API, interacting with a local database, or handling background tasks like file I/O or image processing — coroutines offer a clean, concise, and structured way to get things done.

  10. Mastering Kotlin Coroutines: A Hands-on Guide to Multithreading in Android

    Feb 15, 2025 · In this tutorial, we will cover the basics of Kotlin Coroutines, their implementation, and best practices to help you write high-performance and secure asynchronous code. What you will learn and prerequisites. Technologies and tools needed. Technical Background. Kotlin Coroutines are a high-level API for writing asynchronous code in Kotlin.

  11. Some results have been removed
Refresh