美团 App 启动崩溃 - AlarmManager 500 上限未捕获 IllegalStateException
打开美团 App 后短时间内主进程崩溃(FATAL EXCEPTION),重复启动可稳定复现。即使执行 pm clear com.sankuai.meituan 清除全部应用数据后,首次启动仍会立即崩溃。
This is a practical deployment note for running Qwen3.6-35B-A3B on a single RTX 5060 Ti 16GB with llama.cpp, including multimodal input.
Useful Hugging Face sources:
https://huggingface.co/reedmayhew/UD-2.0-Qwen3.6-35B-A3B-Claude-4.6-Opus-Reasoning-Distilled-GGUFRun x86_64 Linux binaries transparently on arm64 via Box64's dynamic recompilation + kernel binfmt_misc. No wrapper scripts, no box64 prefix — just run the binary directly.
Tools like Android SDK aapt, zipalign, aidl only ship x86_64 binaries. With binfmt_misc registered, the kernel forwards any x86_64 ELF to Box64 automatically — build systems (Gradle, Make, etc.) work without modification.
Android SDK build-tools ship only x86_64 Linux binaries. On arm64 (rooted Android with Debian chroot, Raspberry Pi, other ARM64 SBCs), Box64 translates these via binfmt_misc -- making the entire toolchain transparent to any build system (Gradle, Bazel, Buck, or raw CLI).
After setup, no wrapper scripts, no box64 prefix, no build file changes needed. Just gradle assembleDebug and it works.
Gradle (JVM, native arm64)
---
name: android-cli-apk-builder
description: Build Android APKs purely from the command line on arm64 (aarch64) without Android Studio or Gradle. Use when the user asks to build an APK manually, compile Android apps from CLI, set up a command-line Android build environment on arm64/aarch64, or mentions javac + aapt2 + d8 + apksigner workflow. Trigger keywords: build APK CLI, arm64 APK build, no Gradle, manual APK packaging, android build tools CLI, aapt2 box64.
---
Build Android APKs from the command line on aarch64/arm64 Linux (e.g., Debian chroot on rooted Android, Raspberry Pi, other ARM64 SBCs) without Android Studio or Gradle.
| # How to Download & Audit Chrome Extensions | |
| ## Method 1: Direct CRX Download via API | |
| ```bash | |
| # Replace <EXTENSION_ID> with the target extension ID | |
| EXT_ID="<EXTENSION_ID>" | |
| curl -L -o extension.crx "https://clients2.google.com/service/update2/crx?response=redirect&prodversion=120.0.0.0&acceptformat=crx2,crx3&x=id%3D${EXT_ID}%26uc" | |
| # Extract (CRX v3 is a zip with a header) |