- If you want to get started with Kotlin Coroutines for Android Development and wants to master it, then this project is for you.
- Common use-cases of Kotlin Coroutines in Android has been implemented in this project.
- Also, learn to write Unit-Test for ViewModel which uses Kotlin Coroutines.
- This is your one-stop solution for learning Kotlin Coroutines for Android Development.
- First, learn the concepts of Kotlin Coroutines from this blog
- Then, just clone, build, run the project and start learning Kotlin Coroutines by examples.
This Kotlin Coroutines Example Project will help you in learning the following for Android App Development:
- What are Kotlin Coroutines?
- How to use Kotlin Coroutines in Android App Development?
- Step by step guide on how to implement the Kotlin Coroutines in Android.
- Doing simple task in background using Kotlin Coroutines.
- Doing tasks in series using Kotlin Coroutines.
- Doing tasks in parallel using Kotlin Coroutines.
- Making two network calls in parallel using Kotlin Coroutines.
- What are scopes in Kotlin Coroutines?
- Canceling background task using Kotlin Coroutines.
- Exception handling in Kotlin Coroutines.
- Using Kotlin Coroutines with Retrofit.
- Using Kotlin Coroutines with Room Database.
- Using Kotlin Coroutines with various 3rd party libraries.
- Adding timeout to a task using Kotlin Coroutines.
- Writing Unit-Test for ViewModel which uses Kotlin Coroutines.
-
Single Network Call: Learn how to make a network call using Kotlin Coroutines. This is a very simple use-case in Android App Development.
-
Series Network Calls: Learn how to make network calls in series using Kotlin Coroutines. This is useful when you want to make a network call which is dependent on an another network call.
-
Parallel Network Calls: Learn how to make network calls in parallel using Kotlin Coroutines. This is useful when you want to make network calls in parallel which are independent of each other.
-
Room Database Operation: Learn how to fetch or insert entity in database using Kotlin Coroutines. This is useful when you are using Room Database in your Android Application.
-
Long Running Task: Learn how to do a long running task using Kotlin Coroutines. If you want to do any of your task in background thread using the Kotlin Coroutines, then this is useful.
-
Two Long Running Tasks: Learn how to run two long running tasks in parallel using Kotlin Coroutines.
-
Timeout: Learn how to add timeout to a task using Kotlin Coroutines. If you want to add a timeout to any of your background task in Android, this is going to super useful.
-
Try-Catch Error Handling: Learn how to handle error in Kotlin Coroutines using Try-Catch.
-
CoroutineExceptionHandler: Learn how to handle error in Kotlin Coroutines using CoroutineExceptionHandler.
-
Ignore Error And Continue: Learn how to use
supervisorScope
to ignore error of a task and continue with other task. In other words, if more than two child jobs are running in parallel under a supervisor, one child job gets failed, we can continue with other. -
Unit Test: Learn how write unit-test for ViewModel which uses Kotlin Coroutines.
- Mastering Kotlin Coroutines In Android - Step By Step Guide
- What is suspend function in Kotlin Coroutines?
- Parallel Multiple Network Calls Using Kotlin Coroutines
- Use ViewModelScope For Less Boilerplate Code With Coroutines
- Launch vs Async in Kotlin Coroutines
- Kotlin withContext vs Async-await
- Room Database with Kotlin Coroutines in Android
- Unit Testing ViewModel with Kotlin Coroutines and LiveData
- Exception Handling in Kotlin Coroutines
- Mockito cannot mock because : final class in Kotlin
Video showing how to get started with this project, check here
- Ride-Sharing Uber Lyft Android App - Learn to build a ride-sharing Android Taxi Clone App like Uber, Lyft - Open-Source Project By MindOrks
- Android Tutorial - All Free Android Tutorials by MindOrks
- Android Online Course for Professionals - In this online course, you’ll learn the Dagger, Kotlin, RxJava, MVVM Architecture, Architecture Components, Jetpack, LiveData, ViewModel, Room Database, Database Design, Multithreading, Memory Management, Networking, Caching, How Glide works, Unit Testing, and the best practices for Android Development. By the end of this online course, you will have all the skills you need to become a professional Android Developer.
- Android Online Course for Beginners - This course is for beginners for those who want to get started with Android Development. In this course, you will build two apps: TodoNotes and Ride-Sharing Uber Android App.
Kotlin-Flow-Android-Examples - Check here
Check out MindOrks awesome open source projects here
Copyright (C) 2020 MINDORKS NEXTGEN PRIVATE LIMITED
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Just make pull request. You are in!