Contained in: Network Requests with Retrofit in Android
kotlin coroutines
Android & Kotlin
Lesson in Network Requests with Retrofit in Android
Use Retrofit With Coroutines
Jun 5 2024 · Lesson
…introduction to using Retrofit with Kotlin Coroutines…
Android & Kotlin
Lesson in Network Requests with Retrofit in Android
Use Retrofit With Coroutines
Jun 5 2024 · Lesson
…introduction to using Retrofit with Kotlin coroutines…
Android & Kotlin
Network Requests with Retrofit in Android
Jun 5 2024 · Multimodal Module (1 hr, 26 mins)
…this module, learners will learn about some fundamental concepts of networking, the Retrofit library, how Retrofit works with Kotlin Coroutines, what JSON is, and how to use the Moshi library to parse JSON…
Android & Kotlin
Lesson in Network Requests with Retrofit in Android
Use Retrofit With Coroutines
Jun 5 2024 · Lesson
This lesson guided you through adding Kotlin coroutines into your networking code. You’ve learned how Retrofit seamlessly integrates with Kotlin coroutines to make your code simple, readable, and maintainable. The key takeaways from this lesson are: — Retrofit supports Kotlin coroutines out of the box. — Marking Retrofit interface methods with…
Android & Kotlin
Lesson in Network Requests with Retrofit in Android
Use Retrofit With Coroutines
Jun 5 2024 · Lesson
Refactoring networking code to work with Kotlin coroutines…
Android & Kotlin
Lesson in Network Requests with Retrofit in Android
Use Retrofit With Coroutines
Jun 5 2024 · Lesson
Learn how to use Kotlin Coroutines to make your networking code even easier. By replacing the standard Retrofit callbacks with suspending functions your code will become more readable and easier to grasp…
Android & Kotlin
Lesson in Network Requests with Retrofit in Android
Parse JSON with Moshi
Jun 5 2024 · Lesson
…converter allows Retrofit to automatically parse your requests and responses. In the next lesson, you’ll refactor your networking code to work with Kotlin coroutines. This will make the code much more readable and easier to grasp…
Android & Kotlin
Lesson in Network Requests with Retrofit in Android
Meet Retrofit
Jun 5 2024 · Lesson
…handle type conversions manually. Built-in Serialization: Retrofit seamlessly integrates with popular serialization libraries like Moshi or Kotlin Serialization to convert JSON responses into Kotlin objects. By specifying the expected response type in the interface method, Retrofit handles the deserialization automatically. In contrast, working with HttpsUrlConnection requires manual parsing…