8 रिपॉजिटरी
Implementation of network communication protocols and asynchronous requests within Android applications.
Distinct from Android Network Monitoring: Existing Android candidates focused on monitoring, navigation, or rebuilding; none covered general network programming.
Explore 8 awesome GitHub repositories matching mobile development · Android Network Programming. Refine with filters or upvote what's useful.
This is an asynchronous HTTP client for Android that simplifies network requests by wrapping Apache HttpClient. It provides a callback-based networking library for fetching remote data and communicating with servers without blocking the user interface. The project includes a multipart HTTP uploader for sending binary files and large data payloads, as well as a JSON parser to convert raw response text into structured data objects. It features a session manager that persists cookies in local application preferences to maintain state across multiple requests. Additional capabilities include aut
Facilitates non-blocking asynchronous server communication and remote data fetching for Android apps.
AndroidAsync is a non-blocking networking library for Android that provides asynchronous sockets, HTTP clients, and servers based on Java NIO. It serves as a toolkit for managing raw TCP socket connections and bidirectional data streams using an asynchronous input and output architecture. The library includes a dedicated WebSocket framework for establishing persistent full-duplex communication channels between Android clients and servers. It also enables the hosting of a lightweight asynchronous HTTP server directly on an Android device to handle incoming network traffic. Its broader capabil
Enables sending and receiving asynchronous HTTP requests within Android applications without blocking the UI thread.
This project is a sample library and implementation guide for using RxJava to manage asynchronous data streams and concurrent tasks in Android applications. It provides a collection of reference implementations for reactive programming, focusing on functional operators to transform and combine asynchronous data flows. The library demonstrates specific Android architectural patterns, such as implementing decoupled event buses for component communication and coordinating parallel network requests. It includes concrete examples of mobile-specific patterns including search input debouncing, list
Implements advanced network optimization patterns such as list pagination and exponential backoff.
OkHttpUtils is a convenience wrapper for the OkHttp HTTP client that simplifies common networking operations on Android. It provides a straightforward interface for executing GET and POST requests, including sending form parameters and JSON payloads, as well as uploading files via multipart form data and downloading remote files to local storage. The library distinguishes itself through a set of practical utilities built on top of OkHttp's core architecture. It wraps synchronous calls into an asynchronous callback pattern, includes an interceptor-based logging layer for request and response d
Provides an Android HTTP networking wrapper for GET, POST, JSON, and multipart uploads.
Fuel is a Kotlin HTTP client library for Android and Kotlin applications that handles both synchronous and asynchronous web requests. It functions as a network wrapper that supports executing calls via suspending functions in coroutines, reactive streams, and traditional callbacks. The library features built-in integration for Android LiveData to bind network responses directly to observable state holders for user interface updates. It also includes a JSON serialization client that utilizes customizable mappers to convert raw HTTP response bodies into structured data objects. Capability area
Functions as a networking wrapper with built-in support for Android LiveData and UI thread callbacks.
This project is a collection of Android application reference implementations and sample projects. It provides educational source code demonstrating standard development patterns for building functional mobile applications. The repository includes specific examples for Android UI design, data persistence, and hardware integration. It provides reference implementations for handling long-running background processes and system broadcasts, as well as demonstrations of building layouts and custom graphics. The codebase covers a broad range of capabilities including network programming for remote
Provides reference implementations for network communication and asynchronous requests to remote web services.
rxhttp is a communication layer and network library for Android applications that wraps OkHttp to provide an asynchronous HTTP client. It functions as a type-safe API client that manages network requests and automates the conversion of responses into structured objects. The library features a compile-time code generation tool to produce type-safe request boilerplate and an interceptor framework for applying global encryption, decryption, and custom headers to network traffic. It supports non-blocking communication using Kotlin Coroutines and RxJava. The project covers a broad range of networ
Implements a comprehensive network communication layer for Android apps using OkHttp, Coroutines, and RxJava.
यह लाइब्रेरी नेटवर्क सेवा इंटरफेस और एसिंक्रोनस कॉनकरेंसी प्रिमिटिव्स के बीच एक सेतु के रूप में कार्य करती है। यह मानक सिंक्रोनस नेटवर्क अनुरोध ऑब्जेक्ट्स को आस्थगित (deferred) प्रकारों में बदलकर नॉन-ब्लॉकिंग डेटा पुनर्प्राप्ति को सक्षम बनाती है, जिससे डेवलपर्स स्ट्रक्चर्ड कॉनकरेंसी पैटर्न के माध्यम से बैकग्राउंड कार्यों का प्रबंधन कर सकते हैं। प्रोजेक्ट नेटवर्क सेवा परिभाषाओं के लिए एक प्लगइन के रूप में कार्य करता है, जो रनटाइम पर मेथड कॉल को इंटरसेप्ट करने के लिए डायनामिक प्रॉक्सी जनरेशन का उपयोग करता है। रिस्पॉन्स स्ट्रीम को सीधे कोरूटीन-आधारित फ्यूचर्स के साथ मैप करके, यह मुख्य एप्लिकेशन थ्रेड को बाधित किए बिना रिमोट API अनुरोधों के निष्पादन की सुविधा प्रदान करता है। ये क्षमताएं मोबाइल एप्लिकेशन लाइफसाइकिल में नेटवर्क संचालन के एकीकरण का समर्थन करती हैं, यह सुनिश्चित करती हैं कि बैकग्राउंड डेटा पुनर्प्राप्ति रिस्पॉन्सिव बनी रहे। लाइब्रेरी को आधुनिक एसिंक्रोनस प्रोग्रामिंग प्रवाह का समर्थन करने के लिए मौजूदा नेटवर्क क्लाइंट इंटरफेस का विस्तार करने के लिए डिज़ाइन किया गया है।
Executes asynchronous API calls in mobile applications while keeping the user interface responsive and avoiding main thread blocking.