Update release checklist after emulator smoke
CI / skip-ci-check (pull_request) Successful in 47s
CI / secret-scan (pull_request) Successful in 31s

Mark on-device smoke done and prefer launchd emulator on macOS.
This commit is contained in:
2026-08-05 12:29:01 -04:00
parent cbed90db21
commit 511d1ae329
+7 -10
View File
@@ -6,8 +6,8 @@
- [x] Logo 2 (lasso) as launcher + QS - [x] Logo 2 (lasso) as launcher + QS
- [x] Display name Circle / Circle Overlay - [x] Display name Circle / Circle Overlay
- [x] DEMO, dogfood, non-goals, marketing, shortcuts, brand docs - [x] DEMO, dogfood, non-goals, marketing, shortcuts, brand docs
- [ ] On-device install + Circle Overlay enabled - [x] On-device install + Circle Overlay enabled (`make smoke` on CrklEmulator)
- [ ] Dogfood checklist once - [ ] Dogfood checklist once (Translate / Explain / Share / Vikunja / real app)
- [ ] Record 45s demo - [ ] Record 45s demo
## Tag (when ready) ## Tag (when ready)
@@ -16,7 +16,8 @@
cd ~/Documents/code/crkl cd ~/Documents/code/crkl
git status git status
git tag -a v1.16.2-circle -m "Circle: lasso brand, VIP chips, shortcuts, ship docs" git tag -a v1.16.2-circle -m "Circle: lasso brand, VIP chips, shortcuts, ship docs"
# git push origin v1.16.2-circle git push origin main
git push origin v1.16.2-circle
``` ```
## Install ## Install
@@ -29,11 +30,7 @@ adb shell am start -n com.example.crkl/.MainActivity
Re-enable **Circle Overlay** after every reinstall. Re-enable **Circle Overlay** after every reinstall.
## Headless emulator (if GUI never reaches adb) ## Emulator tips (macOS)
```bash Prefer `make emulator` (launchd) — agent/Cursor sandboxes often kill nohup qemu.
$ANDROID_HOME/emulator/emulator -avd CrklEmulator -no-window \ Then: `make wait-emulator && make install && make smoke`
-gpu swiftshader_indirect -no-snapshot-load -grpc 8554 &
adb wait-for-device
adb shell 'while [[ -z $(getprop sys.boot_completed | tr -d "\r") ]]; do sleep 2; done; echo booted'
```