惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
IT之家
IT之家
C
Check Point Blog
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
M
MIT News - Artificial intelligence
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
F
Fortinet All Blogs
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
爱范儿
爱范儿
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Android Daily Overview
Piotr Borys · 2026-05-20 · via DEV Community

This is a submission for the Gemma 4 Challenge: Build with Gemma 4

What I Built

Idea and first try

I'm getting a lot of notifications on my Android phone. And... I don't like browsing through them ;)
So I thought: if we got a local (thus completely private) LLM - let's use it :)

At first, I've built a background service, collecting incoming notifications and categorizing them, using Gemma-4. And it worked. The issue is, it was a huge battery drainer...

A new approach

So, after few hours at the board, I came with an idea of having a light background service, collecting notifications and SMSes, and using a light MobileBERT model, vectorizing them into an ObjectBox database, with some categorizing. Then, only on-demand, from a dashboard of the main application, using Gemma-4 E4B model, processing all that stored info. That way it seems to be quite nice for my battery - and it works.

Data retention policy

Of course, using an intermediate database means I had to deal with data retention policy. I've made it a 4 categories policy:

  • Volatile - TTL 1 hour - or up to next report generation. Examples are 2FA codes, temporary tokens, OTPs, verification codes, etc.
  • Context Rolling Window - TTL 24h. Examples are weather info, news, commute info, stocks, etc.
  • Action-locked TTL - until action is completed or dismissed. Examples are calendar events, todos, meetings, etc.
  • Long-term knowledge - TTL 7 days. Examples: "my daughter new phone number", "mom will come to visit next Friday", etc.

For long-term knowledge, I've added a setting, so user can decide, how long to store this kind of information.

Action-locked items are presented to a user with possibility to either dismiss them, or add them to calendar or create an alarm. Once that action is taken, the item is marked to be removed from database. These actions call proper intents to underlying system apps, prefilling it with available info, like time, date, title, etc.

Architecture

More on the architecture:

  • Ingestion Layer: Captures data from multiple sources:

    • Real-time SMS: SmsReceiver (BroadcastReceiver) intercepts incoming SMS.
    • Real-time Notifications: NotificationListener (NotificationListenerService) captures system notifications.
    • Background SMS Sync: SmsSyncWorker performs a historical scan of SMS on application startup to ensure no missed information.
  • Processing & Intelligence Layer:

    • Categorization: MediaPipe (MobileBERT) TextClassifier assigns a category (e.g., Finance, Social).
    • Embedding: MediaPipe (MobileBERT) TextEmbedder creates vector embeddings for RAG.
    • Action Extraction: For actionable candidates (like invoices or appointments), the LiteRT-LM (Gemma-4) engine extracts structured JSON data.
    • Retention Assignment: Each message is assigned a retentionCategory based on its content (e.g., OTPs are VOLATILE, invoices are ACTION_LOCKED).
  • Persistence & Maintenance Layer:

    • ObjectBox: Stores MessageEntity and ActionDraft reactive objects.
    • Data Retention: CleanupWorker runs hourly to maintain database health:
    • Expired Data: Removes messages past their expiryTimestamp (e.g., 1 hour for VOLATILE).
    • Resolved Actions: Removes ACTION_LOCKED messages once their corresponding action is confirmed or dismissed.
  • User Interaction Layer:

    • Reactive Dashboard: Automatically displays new ActionDraft entries.
    • Action Execution: ActionManager uses system Intents to launch the Calendar or set Alarms, ensuring the user remains in control.

Architecture diagram

Demo

Short video demo:

Few screenshots:

Screenshot 1
Screenshot 2
Screenshot 3

Code

The code can be found on my GitHub. It's far from being finished and polished - but it's working. Parts of it were created using Antigravity with Gemini.

How I Used Gemma 4

All the incoming information, after being vectorized and embedded into ObjectBox database using MediaPipe MobileBERT, is being processed by Gemma-4 E4B. The model is run locally on device, using LiteRT-LM engine.

Gemma-4 E4B is great for this case - it's fast enough to provide summary and action extraction in seconds on my Galaxy S24 Ultra (including model loading time), while still being small enough to run locally on high end devices. For smaller ones E2B might be a better choice. On first run, it allows downloading the model from a given link.

Prompts for LLM

General main prompt:

You are a personal assistant. Below is a list of notifications and messages.
Provide a concise summary and suggested actions.

Context: [CONTEXT]

Enter fullscreen mode Exit fullscreen mode

Prompt for information extraction from SMSes:

Extract action items (invoices, appointments, tasks) from this SMS.
Today is $dateString.
SMS: "$content"

Categorization Rules:
- If it's an invoice, appointment, or has a specific deadline, use "CALENDAR".
- If it's a general todo without a date, use "TASK".
- If it's an immediate wake-up/reminder, use "ALARM".

Retention Rules:
- "VOLATILE": Temporary tokens, OTPs, short-lived verification codes.
- "ROLLING": Time-sensitive context (weather, generic traffic, stock updates).
- "ACTION_LOCKED": Invoices, appointments, tasks (anything requiring user action).
- "LONG_TERM": Facts, persistent knowledge, information worth keeping for weeks.

Respond ONLY with a JSON object:
{
    "hasAction": boolean,
    "type": "TASK" | "CALENDAR" | "ALARM",
    "title": "Short title",
    "dueDate": timestamp_ms,
    "isExpired": boolean,
    "retention": "VOLATILE" | "ROLLING" | "ACTION_LOCKED" | "LONG_TERM"
}
If no action found, set hasAction to false, but ALWAYS provide the "retention" field.

Enter fullscreen mode Exit fullscreen mode