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

推荐订阅源

罗磊的独立博客
Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
aimingoo的专栏
aimingoo的专栏
U
Unit 42
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
腾讯CDC
I
InfoQ
GbyAI
GbyAI
博客园_首页

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
I Can't Write Code. But I Shipped a Native Android Termin...
RYO ITABASHI · 2026-04-28 · via DEV Community
Cover image for I Can't Write Code. But I Shipped a Native Android Terminal IDE with Claude Code + Codex Running Natively — No Termux Required.

RYO ITABASHI

Update: v0.1.0 Released

Since my last post, everything changed.

The WebView terminal is gone. Termux is no longer required.
Claude Code and Codex now run natively on Android —
in the same process as your shell, with zero TCP, zero IPC.

This is what shipped.


The Problem I Kept Running Into

Claude Code broke in Termux. Codex broke in Termux.
Every update was a gamble.

So I directed the AI to throw away the entire architecture
and rebuild it from scratch.


What Changed

Before (Plan A):

  • WebView terminal via ttyd
  • Termux required
  • TCP socket between terminal and app
  • Died every time I switched apps

After (Plan B):

  • Native PTY via JNI forkpty — same process, zero IPC, zero TCP
  • Termux not required
  • bash, Node.js, Python 3, git, curl, ripgrep, jq, tmux, vim, sqlite3 bundled inside the APK as .so files
  • Executed via /system/bin/linker64 to bypass SELinux's execve restrictions on app_data_file context

As far as I know, this is the only React Native app in the
world with an embedded native terminal emulator running
in-process via JNI.


Claude Code + Codex on Android

Both now run natively through Shelly's managed runtime:

  • Claude Code 2.1.121 (Opus 4.7, 1M context) ✅
  • Codex v0.124.0-termux (GPT-5.5) ✅
  • Gemini CLI 0.39.1 ✅

The runtime hot-swaps updates without an APK rebuild.
Broken versions are logged and cooled down automatically.

If Claude Code or Codex broke in your Termux setup —
this is the maintained path.


4 live panes simultaneously:

  • Top left: Claude Code terminal
  • Top right: Codex (GPT-5.5)
  • Bottom left: Cerebras AI pane with READING TERMINAL
  • Bottom right: Browser pane with YouTube

What Works Today

  • Native terminal with inline command blocks
  • Multi-pane layout (up to 4 live panes)
  • Cross-pane intelligence — AI reads terminal output automatically
  • Multi-agent routing: Claude, Gemini, Cerebras, Groq, Perplexity, Codex, Local LLM via llama.cpp
  • File editing with per-hunk InlineDiff accept/reject
  • @team multi-model consensus
  • SSH profiles
  • CRT mode (scanlines + phosphor green + vignette)

Known Limitations

  • Claude Code first-run OAuth requires credential transplant
  • Ports monitor blocked by Android 10+ SELinux (bug #99)
  • Test coverage is thin

Try It

Rough edges exist. That's why it's open source.