Romman Sabbirrommansabbir.com·Nov 11, 2024Network Security in Android: A Comprehensive Guide [PART 4]Network security is critical for protecting the communication between your Android app and remote servers. Without proper security measures, sensitive data like user credentials, personal information, or financial details can be intercepted, altered,...51 readsAndroid : Security, Encryption and Secure Practicescertificatepinning
Unknownamecoder.hashnode.dev·Jul 30, 2024Webclient recv: Connection reset by peerJava 21, Webclient(Webflux), VirtualThread 환경에서 외부 API와 통신 할 때 아래와 같은 오류가 빈번히 발생하였습니다. 이를 해결하기 위해 어떤 작업을 진행하였는지 간략히 설명하고자 합니다. Errors.NativeIoException: recvAddress(..) failed: Connection reset by peer "Connection reset by peer"는 일반적으로 TCP 연결이 예기치 않게...1 likeconnection-reset-by-peer
Abou Zuhayrblog.zuhayr.dev·Sep 20, 2023Implementing Retrofit (Part 02) in our App with MVVM & DI in Android: (Day 06)In our previous blog post, we understood why we use Retrofit and how should it be implemented in an MVVM/DI-based architecture. But before we move to our next component, we need to look into a few more concepts/features that Retrofit provides. And to...37 readsArchitecture Patterns in AndroidMVVM
Abou Zuhayrblog.zuhayr.dev·Sep 19, 2023Implementing Retrofit (Part 01) in our App with MVVM & DI in Android: (Day 05)In our last blog post, we set up the RoomDB in our project so that we could save data to our local database. We also tried inserting some data into one of our tables. In today's section of this series, we'll try to inject a Retrofit client into our p...361 readsArchitecture Patterns in AndroidMVVM
Himanshu Shrivastavhimanshushrivastav.hashnode.dev·Jul 11, 2023Optimising REST API Integration in Android: Essential Tips, Best Practices, and Top Libraries for Efficient ImplementationIntroduction: Integrating REST APIs into Android applications is a common requirement for many mobile app developers. In this article, we'll explore best practices and recommended libraries for efficient REST API integration in Android. From handling...68 readsandroid app development
Satyajit Dassatyajitdas.tech·Jun 19, 2023Exploring the OkHttp InterceptorIn the world of Android development, networking is an essential part of building robust and feature-rich applications. OkHttp, a popular open-source HTTP client library, simplifies network operations and offers powerful features. One such feature is ...998 readsAndroid
Romman Sabbirrommansabbir.com·Jul 18, 2022Android : Mock Response with Retrofit & OkHttpIf get to know something new by reading my articles, don't forget to endorse me on LinkedIn What is Mock Server? A mock API server or mock server API imitates a real API server by providing realistic mock API responses to requests. They can be on yo...6.0K readsAndroid Application DevelopmentAndroid