📱 RPDev Mobile Ecosystem: Sovereign Android 16 Desktop
A high-performance, privacy-first mobile operating environment engineered for absolute fluidity, zero tracking, and complete user sovereignty.
██████╗ ██████╗ ██████╗ ███████╗██╗ ██╗ ███╗ ███╗ ██████╗ ██████╗ ██╗██╗ ███████╗
██╔══██╗██╔══██╗██╔══██╗██╔════╝██║ ██║ ████╗ ████║██╔═══██╗██╔══██╗██║██║ ██╔════╝
██████╔╝██████╔╝██║ ██║█████╗ ██║ ██║ ██╔████╔██║██║ ██║██████╔╝██║██║ █████╗
██╔══██╗██╔═══╝ ██║ ██║██╔══╝ ╚██╗ ██╔╝ ██║╚██╔╝██║██║ ██║██╔══██╗██║██║ ██╔══╝
██║ ██║██║ ██████╔╝███████╗ ╚████╔╝ ██║ ╚═╝ ██║╚██████╔╝██████╔╝██║███████╗███████╗
╚═╝ ╚═╝╚═╝ ╚═════╝ ╚══════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝╚══════╝╚══════╝
🏛️ Executive Architectural Summary
Modern mobile platforms increasingly bundle aggressive telemetry, cloud search scrapers, and ad tracking SDKs directly into the core home screen launcher. Commercial minus-one screens (such as Google Discover) monetize user attention through opaque algorithmic profiling and behavioral tracking.
The RPDev Mobile Ecosystem decouples and solves these problems through clean, sovereign systems architecture:
- Strict Separation of Concerns: The desktop orchestrator (RPDev Launcher) is strictly isolated from contextual network traffic and feeds. The companion service (RPDev Feed) executes as an independent background service, bridging to the launcher via Android’s high-speed AIDL IPC protocol (
com.android.launcher3.WINDOW_OVERLAY). - Deterministic 120Hz Rendering: By keeping network I/O, heavy HTML parsing, and database transactions out of the launcher process, the launcher maintains an idle footprint of <35MB RAM and guaranteed sub-8ms frame times on high-refresh displays.
- Hardware-Hardened Cryptography: Sensitive user configurations (such as GitHub Personal Access Tokens and Home Assistant credentials) are encrypted at rest using Android’s hardware Keystore via
AES256_GCMauthenticated encryption. - Edge CDN Distribution: All APK binaries, module manifests (
modules.json), and cryptographic SHA256 checksums are signed, validated, and distributed via cdn.iamrp.dev.
🧭 Live Web Portals & Documentation
| Portal | Domain | Purpose |
|---|---|---|
| RPDev Launcher | launcher.iamrp.dev | High-performance home screen showcase & APK distribution |
| RPDev Feed | feed.launcher.iamrp.dev | Sovereign -1 screen companion & RSS intelligence engine |
| Module Repository | repo.launcher.iamrp.dev | Interactive catalog of all 9 verified Hub card modules |
| Knowledge Base | wiki.iamrp.dev | Dual-lens user manual, FAQs, and developer AIDL specifications |
| Edge CDN | cdn.iamrp.dev | Sovereign asset delivery network, schemas, and icons |
| Source Code | github.com/RPDevs-Builds | Open-source repositories under GPL v3.0 |
🏗️ The Three Core Pillars
1. RPDev Launcher
- AOSP Android 16 Parity: Matches Google Pixel Launcher in gesture predictive back navigation, system taskbar integration, and dynamic Material You theme generation.
- DataStore Reactive State: Fully asynchronous configuration flows with zero main-thread blocking.
- Recursive Nested Folders: Hierarchical folder structures with cycle-safe depth-first search (DFS) traversal guards.
- Custom Drawer Folder Icons: Folder categorization inside the all-apps drawer.
2. RPDev Feed
- Sovereign -1 Screen: Replaces proprietary news feeds with an open-source, zero-telemetry dashboard.
- Intelligent RSS Engine: On-device HTML scraping with Jsoup, full offline reader mode, and OPML import/export.
- Hardware Keystore Security: AES256_GCM credential encryption via
EncryptedSharedPreferences. - Thread-Safe IPC Bridge: Manages overlay window attachment and state changes without race conditions.
3. Hub Modules Ecosystem
- 9 Pluggable Modules: Privacy Weather (Open-Meteo), Hardware Telemetry (sysfs), Calendar Agenda, GitHub Pulse, Webpage Scraper, Custom REST JSON Endpoint, Home Assistant State, Docker Fleet Health, and Uptime Kuma Status.
- Formal Schemas: Adheres to
card-v1.schema.jsonwith multi-tier catalog synchronization.