An Android AI assistant that reads WhatsApp conversations via Android Accessibility Service and suggests AI-generated responses in a floating overlay window — built with a Flutter UI layer over a Kotlin backend using platform channels.
Miseflow is an Android utility app that reads the content of open WhatsApp conversations and provides AI-generated response suggestions directly in a floating overlay window — without leaving WhatsApp. It is privacy-conscious: conversation content is processed locally as much as possible, and users control when the AI reads their screen.
WhatsApp is the primary communication channel for both personal and professional conversations in Kenya and across Africa. Crafting the right response — especially in professional or sensitive contexts — requires mental energy. Miseflow provides an AI assistant that understands the conversation context and suggests responses in the user's chosen tone.
This is the most technically complex project in Samuel's portfolio from an architecture standpoint. Flutter cannot natively:
Both of these capabilities are required for Miseflow's core functionality. The solution: write these features in Kotlin (native Android), then communicate with Flutter via platform channels.
Kotlin layer handles:
SYSTEM_ALERT_WINDOW permission — creates and manages the floating overlay window that stays on top of WhatsAppFlutter layer handles:
Platform channel flow:
Kotlin detects WhatsApp open
→ Kotlin reads last 10 messages via Accessibility Service
→ Kotlin sends message array to Flutter via MethodChannel
→ Flutter formats prompt with conversation context + selected tone
→ Flutter calls OpenAI API
→ Flutter displays AI response suggestions in overlay
→ User copies preferred suggestion and pastes into WhatsApp
Multiple OpenAI models available to users based on subscription tier (gpt-4o-mini for base tier, gpt-4o for premium). The prompt includes:
The Accessibility Service only activates when the user explicitly triggers the overlay. It does not run continuously in the background reading all screen content passively. The user taps the floating button to activate reading — this is a deliberate privacy design choice.
Free tier: limited AI calls per day, gpt-4o-mini only Premium tier: higher limits, access to gpt-4o
Built and tested. Not currently on the Play Store — was a proof-of-concept and technical exploration project.
Miseflow represents Samuel's deepest dive into native Android development. Most Flutter developers never need to touch Kotlin — Miseflow required understanding Android's permission model, the Accessibility Service API, overlay window management, and platform channel communication. It pushed the boundaries of what Flutter is designed to do.