[chore] Android targets API 36, as Play now requires - #356
Merged
Merged
Conversation
Since 2026-08-31 Google Play refuses any upload that targets below Android 16. `android-v0.1.3` was accepted by the upload step and then refused at commit: "Target SDK of artifact is too low". The 0.1.1 bundle went up on 2026-08-20, eleven days before the floor moved, which is why nothing had caught it. compileSdk/targetSdk 35 → 36. No behaviour change in the app: no native code (16 KB pages), edge-to-edge already handled at 35, the microphone foreground service is unchanged on Android 16. Verified the minified release build on an API 34 emulator (upgrade install, cold start, record → Stop → upload, import). versionCode 5 / versionName 0.1.4. RELEASING.md now says where the annual deadline is so the bump happens before summer rather than at the failing upload. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
✅ SonarQube Quality Gate passed — pathorsAI_parley0 open issues on this PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this changes
compileSdk/targetSdk35 → 36, Android version0.1.4 (5), and a line inRELEASING.mdabout the annual deadline.Why
android-v0.1.3(#355) uploaded fine and was then refused at commit:Since 2026-08-31 Google Play requires new apps and updates to target Android 16 (API 36) — Target API level requirements. The first bundle went up on 2026-08-20, eleven days before the floor moved.
No behaviour change for this app: no native code (16 KB pages), edge-to-edge was already handled at 35, the
microphoneforeground service is unchanged on Android 16.gradle/verification-metadata.xmlneeded no update — the platform is not a Maven artifact.Part of #244.
How it was verified
./gradlew :app:assembleRelease :app:bundleRelease :parleykit:test :app:testDebugUnitTest— dependency verification passesGET /recordings, no crash, no leftover servicebunx tsc --noEmit/bunx vitest run— not applicable🤖 Generated with Claude Code