You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ In the `playground` package you can play around with Coroutines examples that ru
13
13
14
14
## 🔧 Project Setup
15
15
16
-
Every use case is using its own `Activity` and `JetPack ViewModel`. The `ViewModel`s contains all the interesting Coroutine related code.
16
+
Every use case is using its own `Activity` and `JetPack ViewModel`. The `ViewModel`s contain all the interesting Coroutine related code.
17
17
`Activities` listen to `LiveData` events of the `ViewModel` and render received `UiState`s.
18
18
19
19
This project is using retrofit/okhttp together with a `MockNetworkInterceptor`. This lets you define how the API should behave.
@@ -34,7 +34,7 @@ Sign up to my [newsletter](https://www.lukaslechner.com/newsletter/) to never mi
34
34
35
35
## 🎓 Online Course
36
36
37
-
This project is the foundation of a comprehensive Online Course about "Mastering Kotlin Coroutines for Android Development", which I am currently working on.
37
+
This project is the foundation of a comprehensive Online Course about "Mastering Kotlin Coroutines for Android Development",on which I am currently working on.
38
38
39
39
Sign up to my [newsletter](https://www.lukaslechner.com/newsletter/) to get more information once it is released!
40
40
@@ -71,7 +71,7 @@ This use case performs two network requests sequentially. First it retrieves rec
71
71
72
72
There are also 2 alternative implementations included. One is using old-school [callbacks](app/src/main/java/com/lukaslechner/coroutineusecasesonandroid/usecases/coroutines/usecase2/callbacks/SequentialNetworkRequestsCallbacksViewModel.kt).
73
73
The other one uses [RxJava](app/src/main/java/com/lukaslechner/coroutineusecasesonandroid/usecases/coroutines/usecase2/rx/SequentialNetworkRequestsRxViewModel.kt). You can compare each implementation.
74
-
If you compare all implementation, it is really interesting to see, in my opinion, how simple the Coroutine-based version actually is.
74
+
If you compare all three implementations, it is really interesting to see, in my opinion, how simple the Coroutine-based version actually is.
0 commit comments