Every CI build previously minted a fresh debug keystore, so each release failed to install over the last (signature mismatch) — forcing an uninstall and loss of the on-device proxy token. Commit a fixed debug.keystore (a debug key is non-secret; password is the well-known "android") and point the debug signingConfig at it, so CI and local builds sign identically and updates install in place. No functional app changes. versionCode 17 -> 18, versionName 0.5.1 -> 0.5.2. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_015jgJnzMr2bdNuWcDX2xRUR
This commit is contained in:
@@ -13,7 +13,7 @@ on upward escalations — you don't have to be looking at the screen.
|
||||
> advertise/fuzz code from one of the reference projects is intentionally
|
||||
> excluded.
|
||||
|
||||
Latest release: [v0.5.1](https://github.com/KaraZajac/OVERWATCH/releases) (debug-signed APK, sideload).
|
||||
Latest release: [v0.5.2](https://github.com/KaraZajac/OVERWATCH/releases) (debug-signed APK, sideload).
|
||||
|
||||
---
|
||||
|
||||
@@ -132,7 +132,10 @@ Or download the latest debug-signed APK from
|
||||
|
||||
Releases are cut by CI: pushing a `v*` tag runs `.github/workflows/release.yml`,
|
||||
which builds `:app:assembleDebug` and attaches the APK to a GitHub Release. No
|
||||
build-time secrets — the app ships with no key or token.
|
||||
build-time secrets — the app ships with no key or token. A fixed `debug.keystore`
|
||||
is committed (a debug key is non-secret; password is the well-known `android`) so
|
||||
every build — CI or local — signs identically and updates install in place
|
||||
without an uninstall.
|
||||
|
||||
---
|
||||
|
||||
@@ -208,6 +211,7 @@ field-tested. Current release **v0.5.1**. Notable changes:
|
||||
- v0.3.0–v0.3.2 — Floating threat-circle overlay (chat-bubble style) + drag/crash fixes.
|
||||
- v0.5.0 — Waze re-added via a key-protected Caddy proxy (`api.blackflagintel.com`): the OpenWeb Ninja key stays server-side, the app uses an encrypted per-device token. GitHub Actions release pipeline added.
|
||||
- v0.5.1 — UI: larger map circle with a threat-color ring, ⌖ user crosshair, source-color dots (Flock red / Waze blue / Citizen purple), START moved to the bottom.
|
||||
- v0.5.2 — Committed a fixed debug keystore so CI + local builds sign identically; updates now install in place (no functional changes).
|
||||
|
||||
## License
|
||||
|
||||
|
||||
+15
-2
@@ -12,8 +12,21 @@ android {
|
||||
applicationId = "org.soulstone.overwatch"
|
||||
minSdk = 26
|
||||
targetSdk = 35
|
||||
versionCode = 17
|
||||
versionName = "0.5.1"
|
||||
versionCode = 18
|
||||
versionName = "0.5.2"
|
||||
}
|
||||
|
||||
// Fixed debug keystore committed to the repo (a debug key is non-secret — its
|
||||
// password is the well-known "android") so CI and local builds sign
|
||||
// identically. Without it each CI build minted a fresh debug key and updates
|
||||
// wouldn't install over the previous one.
|
||||
signingConfigs {
|
||||
getByName("debug") {
|
||||
storeFile = rootProject.file("debug.keystore")
|
||||
storePassword = "android"
|
||||
keyAlias = "androiddebugkey"
|
||||
keyPassword = "android"
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user