Unless you’re a Multimillion or a Billion dollar company, you probably don’t have a multimillion-dollar ad budget or professional Spinners.
Your product needs to stand out on its own merits like More
Unit testing on android - Canopas podcast #1youtu.be
Unit testing has become a must-have skill for any programmer. Many programmers write effective tests but not all, and the reason behind that could be a lack ......
Find why and how choosing the proper architectural style can make your life easier.
Keylines of the podcast:
What is web service?
What is GraphQL?
What is Rest?
Does GraphQL replace REST?
How to start development in GraphQL and in REST?
Is GraphQL relies on Frontend or Backend?
Conclusion
This podcast will guide you on which is the best choice, REST OR GraphQL, and with which you should go.
How can you measure your progress as a programmer?
Here are 7 signs you're growing as a programmer
Don’t only write code
Content and knowledge sharing
Constantly look for improvements
Crave new trends in development besides meeting deadlines
Timebox ambiguous task
Valuable code reviews
Selective about choosing third party libraries
Retrofit — Effective error handling with Kotlin Coroutine and Result API
Error handling is important, but if it obscures logic, it’s wrong.
What are retrofit call adapters used for?
How does CallAdapter work?
In this article, you will learn how can we do effective error handling with Kotlin Coroutine and Result API
Custom callAdapter in retrofit allows us to filter out various API error responses at a centralized level which reduces boilerplate code effectively. We will create our own Retrofit callAdapter to handle the API call Success and Error states.
We will use Kotlin Result API consistently in the whole application as a response of API calls.
You can find the full code of this project on github.