The EU pries Android open for rival AI

By Mark 7 min read 0 views

😁 Hello, super humans! Monday brings the kind of news that sounds like paperwork and lands like an earthquake: Brussels just told Google to let other AI assistants do the things only Gemini could do on your phone. If you have ever wanted to say “Hey [your-assistant-here]” and have it actually book the taxi, today’s Big Story is for you. Let’s dig in.

πŸ“° Quick Signals

  • 🧠 AI: OpenAI shipped ChatGPT Work, an agent built on Codex and GPT-5.6 that drafts docs, decks, and sites, its direct answer to Anthropic’s Claude Cowork.
  • πŸ€– Robotics: Chinese humanoid startups Unitree and LimX Dynamics are racing to file IPOs, with Unitree’s STAR Market debut possible before month end.
  • πŸ’» Programming: TypeScript 7.0 reached general availability: the compiler is rewritten in Go and runs roughly 10x faster than 6.0.
  • ⚑ Electronics: At RISC-V Summit Europe in Bologna, SiFive’s Krste AsanoviΔ‡ declared server-class RVA23 silicon is finally appearing in real systems.
  • πŸ“‘ Telecom: Apple’s Emergency SOS via Satellite is moving off Globalstar to Amazon’s Leo constellation following Amazon’s April acquisition.

πŸ” The Big Story: The EU pries Android open for rival AI

For years, the fastest path to a phone’s brain has run through one door marked “Hey Google.” On July 16 the European Commission decided that door should not have a single key. If you build assistants, agents, or search, the ground under Android just shifted.

What happened: The Commission issued two sets of binding specification measures to Google under the Digital Markets Act (DMA), the EU’s platform-competition law. The first set forces AI interoperability on Android: rival AI assistants must get equal access to the system features Google reserved for Gemini. The second forces Google to share anonymized Search data with third-party search engines and AI developers. Google’s Kent Walker called the rulings a risk to “privacy and security guardrails for millions of Europeans.”

The details: Today a competing assistant on Android is boxed in; it cannot be summoned by voice the way “Hey Google” can, and it cannot reach deep into apps. The Commission’s remedy opens 11 feature groups so a third-party assistant can be voice-activated and can act inside apps on your behalf: booking a taxi, suggesting replies in a chat app, or answering questions about a place you just visited. Google may still gate access to competitors that meet security and privacy bars. The timelines are the catch: Search-data sharing starts in January 2027, and the Android feature opening lands with the next Android version scheduled for July 2027.

flowchart LR
    U[You say a command] --> A{Which assistant?}
    A -->|Today| G[Only Gemini<br/>full system + app access]
    A -->|From Android 2027| G
    A -->|From Android 2027| R[Any approved rival<br/>voice trigger + app actions]
    style G fill:#0B1117,stroke:#1FB6F5,color:#F4F8FB
    style R fill:#0B1117,stroke:#22C55E,color:#F4F8FB

Important

Our take: This is the most important platform news of the year for anyone building agents, and almost nobody is treating it that way. The moment a third-party assistant can be the voice trigger and fire real in-app actions, the assistant stops being a walled feature and becomes an open surface you can ship onto. I would start designing for “voice intent in, app action out” now, because the 2027 dates are a design runway, not a reason to wait. The privacy-versus-openness fight Google is raising is real, but “only we can be trusted with the keys” is exactly the argument the DMA exists to test.

πŸ—žοΈ More News

🧠 AI

  • Google’s flagship Gemini 3.5 Pro is months behind schedule after missing internal targets, with several senior DeepMind researchers departing in one week.
  • The World AI Conference in Shanghai closed today after Xi Jinping’s first keynote and the launch of a World AI Cooperation Organization with 29 founding countries.
  • The UN pushed for coordinated AI governance, warning that ungoverned systems risk “catastrophic harm.”
  • The EU’s second DMA measure forces Google to share anonymized Search data with rivals including OpenAI, starting January 2027.
  • OpenAI leaned further into its consumer “super app” ambitions as its rivalry with Anthropic intensified.
  • Anthropic has confidentially filed a draft S-1 with the SEC, setting up a potential landmark AI IPO.

πŸ€– Robotics

  • Agility Robotics is going public via a SPAC merger valued near $2.5 billion, the largest capital raise in humanoid history.
  • China’s expo season showed off pop-star-style humanoids with lip-sync, long on showmanship and short on autonomy.
  • A field roundup separates which humanoids are actually deployed in 2026 from the ones still living on a demo stage.

πŸ’» Programming

  • Node.js 26.5.0 shipped as the current release on July 8, with support running through April 2029.
  • Node.js 20.x reached end-of-support on July 9, so pin your CI images and bump before the security updates stop.
  • Microsoft shipped the July servicing updates for .NET and .NET Framework with security and reliability fixes.

⚑ Electronics

  • Germany’s Ubitium taped out its first “universal” RISC-V processor on Samsung’s 8-nm node, aimed at embedded compute.
  • Alibaba unveiled a new RISC-V AI chip as part of a full-stack silicon strategy.
  • TSMC raised its 2026 capex to $60-64 billion after June revenue jumped 68% year on year, driven by AI chip demand.

πŸ“‘ Telecom

  • NTT Docomo’s Starlink Direct satellite service passed 5 million subscribers about two months after its April launch.
  • SpaceX is folding Direct-to-Cell into a rebranded Starlink Mobile, targeting a 5G-NTN “Earth-like” second generation around mid-2027.
  • Researchers mapped how AI, terahertz links, and satellite systems are converging to shape the coming 6G networks.

πŸ‘¨β€πŸ’» Code Corner

The Big Story is really about one pattern: a spoken intent comes in, and some app handles it. That is exactly what the EU is forcing Android to open up, so here is that pattern in miniature. A tiny router maps an intent to whichever handler registered for it, no built-in assistant required.

# A toy "assistant action router": voice intent in, app action out.
ACTIONS = {}

def action(name):
    def register(fn):
        ACTIONS[name] = fn
        return fn
    return register

@action("book_taxi")
def book_taxi(dest: str) -> str:
    return f"Taxi booked to {dest}"

def dispatch(intent: str, **kwargs) -> str:
    handler = ACTIONS.get(intent)
    return handler(**kwargs) if handler else f"No app handles '{intent}'"

print(dispatch("book_taxi", dest="airport"))   # Taxi booked to airport
print(dispatch("order_pizza"))                 # No app handles 'order_pizza'

Tip

On real Android this registration is done with App Actions and intent filters; the OS, not your ACTIONS dict, decides who can be invoked. The DMA change is about who gets to be the dispatcher, not about the routing itself.

🧰 Toolbox

  • Node.js 26.5.0: the current line with a fresh V8, supported through April 2029.
  • endoflife.date: one-glance lookup for when a language or runtime loses support, handy now that Node 20 just aged out.
  • Gleam: a friendly, fully type-safe language that runs on the Erlang VM and compiles to JavaScript.
  • .NET July servicing updates: this month’s security and reliability rollup across .NET and .NET Framework.
  • Ubitium universal RISC-V: a fresh tape-out worth watching if you build embedded hardware.

πŸ”Œ Component of the Week (rotating)

Raspberry Pi Pico 2 (RP2350): With RISC-V dominating today’s electronics news, the friendliest way to actually run the architecture is a five-dollar board on your desk. The Pico 2’s RP2350 chip carries two CPU personalities: dual Arm Cortex-M33 cores and dual Hazard3 RISC-V cores (RV32IMAC), selectable at boot, both clocked at 150 MHz with 520 KiB of SRAM. That makes it a rare place to compile the same firmware for Arm and RISC-V and compare, without a lab full of gear. Typical projects: PIO-driven LED strips, low-latency sensor rigs, and USB gadgets. The board is about $5, and the bare RP2350A drops near $0.80 in reels. Grab the Pico 2 datasheet and board details to start.

πŸ“š From the Blog

πŸ˜€ The Bot Says…

The EU spent years teaching Android to answer to someone other than “Hey Google.” Somewhere, a spare RISC-V core booted up just so it could feel included.


That’s all for today! Which assistant would you actually make your default once Android opens up? Reply and tell us.