release: bump versionCode 91 -> 92 (0.1.0-CZ)
Some checks failed
build-apk / build-and-publish (push) Failing after 2m2s
gitleaks / scan (push) Failing after 2s

Ships the player-collapse-on-channel fix and picks up the strawcore
reliability pass. Releases had been silently no-op'ing on fdroid: the
versionCode is a hand-maintained constant, so a commit that doesn't bump it
rebuilds the same debug_<vc>.apk filename, and the publish receiver's
anti-downgrade guard (correctly) refuses to overwrite an already-published
file (exit 3 = "nothing to do"), which the CI treats as success. Bumping the
code produces a new filename that actually publishes.
This commit is contained in:
Cobb 2026-07-29 07:05:15 -07:00
parent 6d7e5508bb
commit 8d9ad3513f
5 changed files with 195 additions and 11 deletions

View file

@ -359,6 +359,6 @@ const val STRAW_SDK_TARGET = 35
// vc=19 / 0.1.0-AE — rust pipeline cutover. Extraction via
// strawcore-core (Sulkta-OSS/strawcore) via the UniFFI wrapper; no
// NewPipeExtractor in the runtime path.
const val STRAW_VERSION_CODE = 91
const val STRAW_VERSION_NAME = "0.1.0-CY"
const val STRAW_VERSION_CODE = 92
const val STRAW_VERSION_NAME = "0.1.0-CZ"
const val STRAW_APPLICATION_ID = "com.sulkta.straw"