Skip to content

fix: use correct Play Console track name for closed testing group#11

Merged
cph5236 merged 2 commits into
mainfrom
claude/compassionate-pasteur-hchizt
Jun 12, 2026
Merged

fix: use correct Play Console track name for closed testing group#11
cph5236 merged 2 commits into
mainfrom
claude/compassionate-pasteur-hchizt

Conversation

@cph5236

@cph5236 cph5236 commented Jun 12, 2026

Copy link
Copy Markdown
Owner

Summary

  • Sets track to Closed group V0.0.5 (the exact API identifier confirmed via the tracks list endpoint)
  • Removes the temporary debug step that listed available tracks

Test plan

  • Merge and trigger a deploy — verify the release appears under "Closed testing - Closed group V0.0.5" in Play Console, not the Alpha track

Generated by Claude Code

@claude

claude Bot commented Jun 12, 2026

Copy link
Copy Markdown

Claude finished @cph5236's task in 2m 7s —— View job


Code Review

  • Gather context and understand the PR
  • Read the changed file and analyze the diff
  • Run code review
  • Post review findings

Summary

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 14versionCode 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.

@github-actions

Copy link
Copy Markdown

Preview deployed

https://cph5236.github.io/SimpleWeatherService/pr-previews/5f4f537bbeeb6daa07727500c6707ce0a93a9d1f/

Commit: 5f4f537bbeeb6daa07727500c6707ce0a93a9d1f

It may take a minute or two for the page to go live after the workflow completes.

@cph5236
cph5236 merged commit f863e9a into main Jun 12, 2026
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants