Filters

Hide filters
Platform
Content Type
Difficulty

All Tutorials · 8 Results

Contained in: Network Requests with Retrofit in Android kotlin coroutines
Android & Kotlin

Lesson in Network Requests with Retrofit in Android

Use Retrofit With Coroutines

…introduction to using Retrofit with Kotlin Coroutines
Android & Kotlin

Lesson in Network Requests with Retrofit in Android

Use Retrofit With Coroutines

…introduction to using Retrofit with Kotlin coroutines
Android & Kotlin
Network Requests with Retrofit in Android
…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

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

Refactoring networking code to work with Kotlin coroutines
Android & Kotlin

Lesson in Network Requests with Retrofit in Android

Use Retrofit With Coroutines

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

…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

…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…