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

推荐订阅源

V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
罗磊的独立博客
小众软件
小众软件
I
InfoQ
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
MyScale Blog
MyScale Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
P
Proofpoint News Feed
博客园 - 司徒正美
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium

Android Authority

I know YouTube Music is flawed, yet I prefer it over Spotify Survey reveals 50% of users don’t like the new Google Health app It’s time for Samsung’s S Pen to evolve or die The Motorola Moto G Stylus (2026) is a sequel we didn’t need NotebookLM is quickly becoming the podcast app I didn’t know I needed Samsung’s next Galaxy Watch update could finally make your health data useful Google’s Gemini Spark is ready to run your digital errands while your phone is off Telegram’s finally getting an official Wear OS app again Nintendo is back on mobile, and it wants to turn your selfies into minigames Google Drive’s big document scanner overhaul is finally here — don’t overlook its power Spotify will finally give you real profile tools to make music listening more social Acer’s new gaming handheld might dodge the worst of tech inflation Meta is cooking up a new line of smart glasses, and they may not be Ray-Bans ChatGPT is retiring this beloved legacy model in June Is Microsoft Copilot not working? Here’s what’s going on (Update: Back up) Samsung Gallery starts quietly ending OneDrive support ahead of schedule Here’s a first look at custom wallpapers in Google Messages Rivian is pretty sure customers want AI, not Android Auto Leaked iPhone 18 Pro dummy units may have just shown the next Android phone color trend A company spent $500 million in one month after forgetting to set AI usage limits Now even MediaTek’s cheap chips are embarrassing the Tensor G5 in one major area Pixel 10 Pro XL user says Google returned their phone worse than dead The best robot pool cleaners of 2026: Top picks for all budgets and pool sizes Claude Opus 4.8 is more honest, less deceptive, and considerably cheaper Roborock’s Qrevo Curv 2 Flow is ready to mop up the competition — and your filthy floors Google is making it easier to share Gemini chats, media, and more with your team One UI 9 borrows one of the iPhone’s most useful call features This is the biggest mistake Oura is making with the Oura Ring 5 This Verizon user owed $400, but the carrier made an unexpected move Google’s Fitbit Air makes a strong case for minimalism and ditching your smartwatch
Why Android and iOS will never be enough for an AI-first ...
Robert Triggs · 2026-06-25 · via Android Authority

Over the past year, I’ve found myself repeatedly hitting the same limitation with “agentic AI” tools. They’re impressive at first — summarising emails, setting reminders, even writing code — but only within a narrow set of built-in capabilities. The moment you try to stretch them into something slightly more ambitious or personalized, they simply aren’t designed to go there.

To go beyond these constraints, we can take two approaches. One is structured tool exposure — frameworks like the Model Context Protocol (MCP), which allow external cloud services to hook into your agent of choice. Anthropic, OpenAI, and most other platforms support MCP. The other is more experimental: giving agents, like OpenClaw, broader system-level access to our personal machines.

This is where ideas like letting an AI read your emails, manage your smart home, or trigger real-world actions start to emerge. But it raises a much more fundamental question about the future of our increasingly AI-centric mobile operating systems: are we mistakenly shoehorning a new way of computing into something that was never built for it?

What worries you most about agentic AI on smartphones?

802 votes

How does AI actually do anything?

Claude main screen

Mitja Rutnik / Android Authority

Before we go there, one often misunderstood concept about agentic AI is how it actually works. When you ask an AI to set a calendar event or generate a text document, it isn’t executing those tasks directly. Gemini doesn’t peer through your Gmail app to check your inbox, or scroll Chrome in the background to find the info you’re after. It’s still just a language model reading text in and producing text out — that’s all it can do.

However, that text output can include structured “tool calls” — requests for external systems to do something on its behalf. A separate platform layer intercepts these requests, runs the appropriate software, and returns the result back to the model before it, in turn, hands its answer back to you.

AI agents needs tools, and the more the merrier.

For example, let’s ask Gemini to summarise a webpage. Google’s AI model doesn’t browse the internet on its own little computer somewhere. Instead, it calls a fetch tool, receives the page’s raw HTML, and then generates the requested summary. In some sense, that orchestration layer is the really vital cog that turns your AI from a chatbot into a proper personal assistant.

In practice, every AI capability is just a set of external functions it has to ask someone else to execute, ranging from on-device code snippets to calling out to another service or MCP. While our first smartphone assistants could only perform basic tasks like setting alarms and checking reminders, Google and Apple are now moving quickly to embrace a broader approach to AI tools. But what’s the best way to actually do it?

Is it time for an entirely new AI OS?

App bubbles in Android 17 Beta 3.

Joe Maring / Android Authority

I don’t think we want to revisit the Rabbit R1, but hopefully you can see there’s potential value in platforms built for AI-first use rather than shoehorning features into systems that were never built with them in mind. Deciding exactly what data and tools AI can access, how these are controlled, and in what scope, is a bigger problem than it might seem at first and one that doesn’t necessarily align with today’s app-first model.

Take powerful, popular AI tools like Claude Code and Codex, which, with a little effort, can branch out from their code-first origins into talking to other services and even run small tasks on your behalf. Ironically, Microsoft has cottoned onto a reasonable idea with its Project Solara prototype, an OS built specifically to run specialized AI agents for specific tasks. Though I’m not completely convinced by an AI-led UI experience, and this doesn’t exactly sound like the sort of expansive platform AI would really need to flourish.

Google is working on its own solution to this problem for Android with its new AppFunctions framework, whispered about at I/O 2026. In a nutshell, this experimental API allows apps to expose tools to Android’s Gemini AI agent, enabling direct communication between apps and AI. That’s certainly a step in the right direction, akin to an on-device version of an MCP server — the apps are just local rather than in the cloud.

Android AppFunctions API

AppFunctions are Android's big step towards more agentic AI.

Google’s approach is quite likely to succeed at the core objective of making Gemini far more useful and “agentic.” AppFunctions are very simple for developers to build on, run on-device with no latency and enhanced privacy, and interact directly with the app state. It also leverages Android’s permission and privileged-agent model, which is a good security feature for blocking functions you don’t want to run.

AppFunctions and MCP are highly interoperable, but Google’s approach still appears quite restrictive compared to what’s already possible on other platforms. For instance, we’re limited to the functions exposed by apps and the OS, and still lacking any hint of long-term project scratchpads or self-learning capabilities.

AppFunctions are useful for task automation but structurally incapable of supporting more autonomous workflows that span multiple systems or of maintaining state across long-term tasks on their own. Asking Gemini to book a cab, add milk to your shopping list, and cancel a hotel booking will be game-changing enough for many users, but AppFunctions seems unlikely to open the door to your phone managing your stock portfolio, budgeting, and booking an entire vacation away, or building its own solutions to unique problems.

AI-first for an AI world

Apple iOS27 features natural language shortcuts

Dhruv Bhutani / Android Authority

Of course, those more advanced, multi-step, long-task use cases are exactly what make some existing tools a security nightmare to use in practise. An agent that understands you, your needs, and your data is far more powerful than just expanding tool calling, but it’s also inherently riskier, especially when given unfettered access to your accounts and documents. However, these benefits can be realized with careful scoping; essentially, giving an AI a carefully bounded environment of its own to accomplish specific tasks.

Proper sandboxing is the key, but that’s not as easy a solution as it might seem. Containers and virtual machines are too resource-intensive to spin up for multiple agentic tasks. WebAssembly (WASM) shows promise for lightweight, secure applications, but the specification is a broken mess when it comes to cross-language support for developers. There are also lingering questions over sensitive data management and history (you don’t want your AI to retain context of your emails in plain-text memory), per-task permissions and shared memory, and how to handle authentication between agents and services. Whoever solves these problems will have a very powerful AI-centric tool at their disposal that could potentially upend Android and iOS as the AI platforms of the future.

Android and iOS are built on apps at the core, but AI is changing that assumption.

Until then, AppFunctions, MCP, and similar frameworks are incredibly useful because they make today’s operating systems accessible to AI. They’re the future of mobile AI in the short term, but crystal ball gazing a bit further ahead is far less clear. Given how the wind is blowing, it seems agent-service integrations could be the future rather than apps.

Do you really need a 300MB taxi app when an MCP request will do? Do we want cluttered app drawers and notification shades when everything is at the end of a quicker voice command? If AI really is the primary way we will interact with computing in the future, we may need to rethink what a smartphone operating system is built to do from the ground up.

Thank you for being part of our community. Read our Comment Policy before posting.