You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The core change (track = 'Closed group V0.0.5') is correct and straightforward — replacing the numeric track ID with the confirmed human-readable API identifier. However, there is a blocking version regression that would land in main if this PR is merged as-is.
Issues Found
🔴 Version regression will land in main on merge
SWS_App/android/app/build.gradle, lines 12–13
main currently has:
versionCode 14
versionName "0.1.3"
This PR branch has:
versionCode 12
versionName "0.1.1"
This branch was cut before the version was bumped to 14/0.1.3, and those bumps were never pulled in. If merged now, main will regress from versionCode 14 → versionCode 12. Google Play rejects any upload whose version code is ≤ the last published version code, so the next CI deploy after merging this would fail immediately.
Fix: Rebase this branch on main (or manually update versionCode to 15 and versionName to "0.1.4" or whatever the next intended release version is) before merging. Fix this →
✅ Track name change — looks correct
SWS_App/android/app/build.gradle, line 57
- track = '4699830681016541675'+ track = 'Closed group V0.0.5'
The numeric ID was a previous attempt to reference the closed testing group. Switching to the confirmed human-readable track name is the right fix for the Gradle Play Publisher plugin. No concerns here.
Verdict
Do not merge yet. The version regression is a blocking issue — Play Console will reject the next upload. Rebase on main to pull in versionCode 14 and versionName "0.1.3", then increment appropriately for this release.
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
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.
Summary
Closed group V0.0.5(the exact API identifier confirmed via the tracks list endpoint)Test plan
Generated by Claude Code