📰 RPDev Feed: Sovereign Minus-One Screen Companion
A smart, sovereign -1 screen. Replaces proprietary tracking feeds with an open, zero-telemetry dashboard that respects user privacy.
- Live Showcase: feed.launcher.iamrp.dev
- User Documentation: wiki.iamrp.dev/feed/
- Source Repository: github.com/RPDevs-Builds/RPDev-Feed
🛡️ Security & Encryption Architecture
RPDev Feed provides a sovereign hub for external data (GitHub, Home Assistant, Docker APIs, RSS). To protect user tokens without third-party key storage:
- Hardware Keystore Binding:
EncryptedSharedPreferences.create( context, "rpdev_hub_plugins_secure", MasterKey.Builder(context).setKeyScheme(MasterKey.KeyScheme.AES256_GCM).build(), EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV, EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM ) - Network Scheme Validation:
Dynamic REST and Web Scraper modules enforce strictly
httpandhttpsURI schemes with bounded 2MB payload sizes to prevent Denial-of-Service memory exhaustion. - Offline Room Database: Articles, bookmarked stories, and feed metadata are persisted in a local SQLite Room database with automatic pagination and vacuuming.