8 Repos
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 ist eine Kotlin-HTTP-Client-Bibliothek für Android- und Kotlin-Anwendungen, die sowohl synchrone als auch asynchrone Web-Anfragen verarbeitet. Sie fungiert als Netzwerk-Wrapper, der die Ausführung von Aufrufen über suspendierende Funktionen in Coroutines, reaktive Streams und traditionelle Callbacks unterstützt. Die Bibliothek bietet eine integrierte Unterstützung für Android LiveData, um Netzwerkantworten direkt an beobachtbare State-Holder für UI-Updates zu binden. Sie enthält zudem einen JSON-Serialisierungs-Client, der anpassbare Mapper verwendet, um rohe HTTP-Antwort-Bodys in strukturierte Datenobjekte zu konvertieren. Die Funktionsbereiche decken REST-API-Integration ab, einschließlich Request-Routing, Header- und Parameterkonfiguration sowie Basis-Authentifizierung. Das Toolset erstreckt sich auf die Übertragung binärer Daten durch Multipart-Uploads und Datei-Downloads mit Fortschrittsanzeige. Für Wartung und Observability bietet sie eine Interceptor-basierte Pipeline für Traffic-Logging und einen Mechanismus zur Simulation von Netzwerkaufrufen als blockierende Ausführungen für Unit-Tests.
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.
Diese Bibliothek dient als Brücke zwischen Netzwerk-Service-Interfaces und asynchronen Concurrency-Primitiven. Sie ermöglicht den nicht-blockierenden Datenabruf durch die Umwandlung standardmäßiger synchroner Netzwerk-Request-Objekte in Deferred-Typen, was es Entwicklern erlaubt, Hintergrundaufgaben durch strukturierte Concurrency-Muster zu verwalten. Das Projekt fungiert als Plugin für Netzwerk-Service-Definitionen und nutzt dynamische Proxy-Generierung, um Methodenaufrufe zur Laufzeit abzufangen. Durch das Mapping von Response-Streams direkt auf Coroutine-basierte Futures erleichtert es die Ausführung von Remote-API-Anfragen, ohne den Haupt-Anwendungsthread zu unterbrechen. Diese Funktionen unterstützen die Integration von Netzwerkoperationen in die Lebenszyklen mobiler Anwendungen und stellen sicher, dass der Datenabruf im Hintergrund reaktionsfähig bleibt. Die Bibliothek wurde entwickelt, um bestehende Netzwerk-Client-Interfaces um moderne asynchrone Programmierabläufe zu erweitern.
Executes asynchronous API calls in mobile applications while keeping the user interface responsive and avoiding main thread blocking.