Add Android APK fleet nodes with Crucible UI integration and tests.

APK wrapper registers platform=android via AETHERFORGE_PLATFORM; fleet UI shows robot icons, Android Access Depth probes, and a shortened mining onion timeline.
This commit is contained in:
AetherForge
2026-06-07 02:44:29 -07:00
parent d9f36f182c
commit 50ebfe53cb
89 changed files with 2849 additions and 82 deletions

View File

@@ -12,6 +12,7 @@ import {
type SubnetLayout,
} from '../../help/networkTopology';
import { agentAccentColor } from '../../help/fleetHeatMap';
import { platformIcon } from '../../help/platform';
import './NetworkTopoMap.css';
// ── Types ──────────────────────────────────────────────────────────────────
@@ -29,14 +30,6 @@ interface Props {
// ── Platform icon helper ───────────────────────────────────────────────────
function platformIcon(platform: string): string {
const p = platform.toLowerCase();
if (p.includes('win')) return '⊞';
if (p.includes('linux')) return '🐧';
if (p.includes('darwin')) return '';
return '⬡';
}
// ── Hashrate spike tracking ────────────────────────────────────────────────
const SPIKE_RATIO = 1.3;