Use Amazon deep link for Amazon subscription management#3291
Merged
Conversation
On Amazon devices, open amzn://apps/library/subscriptions to manage subscriptions directly in the Amazon App Store. Falls back to the backend-provided web URL if the deep link is not available. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Tests verify the deep link is tried first and that the web URL fallback works when the deep link is unavailable. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3291 +/- ##
=======================================
Coverage 79.47% 79.48%
=======================================
Files 357 357
Lines 14351 14352 +1
Branches 1960 1960
=======================================
+ Hits 11406 11407 +1
Misses 2141 2141
Partials 804 804 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
github-merge-queue Bot
pushed a commit
that referenced
this pull request
Apr 2, 2026
**This is an automatic release.** ## RevenueCat SDK ### ✨ New Features * Use Amazon deep link for Amazon subscription management (#3291) via Cesar de la Vega (@vegaro) * Introduce purchases codegen package (#3163) via Jaewoong Eum (@skydoves) ### 🐞 Bugfixes * Fix Test Store Purchase dialog not cancelling purchase on outside tap (#3289) via Antonio Pallares (@ajpallares) ## RevenueCatUI SDK ### Paywallv2 #### 🐞 Bugfixes * Fix mixed currencies in paywall price variables (PW-133) (#3119) via Facundo Menzella (@facumenzella) ### 🔄 Other Changes * Add docs for the codegen plugin (#3288) via Jaewoong Eum (@skydoves) * Run integration tests against all backend environments (#3278) via Toni Rico (@tonidero) * Use merge queue for release PR merging (#3281) via Antonio Pallares (@ajpallares) * ci: warn when pre-built material-icons are imported in :ui:revenuecatui (#3282) via Facundo Menzella (@facumenzella) <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk: this is a version/release bookkeeping update plus docs/CI deployment path changes, with no functional runtime logic changes beyond the reported version string. > > **Overview** > Cuts the `9.29.0` release by switching all references from `9.29.0-SNAPSHOT` to `9.29.0` (Gradle `VERSION_NAME`, internal `frameworkVersion`, and sample/test app dependency versions). > > Updates documentation publishing to point to the `9.29.0` docs directory (CircleCI S3 sync path and `docs/index.html` redirect), and rolls forward `CHANGELOG.md`/`CHANGELOG.latest.md` with the 9.29.0 release notes. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit bf217fd. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
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.
Summary
amzn://apps/library/subscriptionsdeep link first when the user wants to manage their subscription from Customer Centerhttps://www.amazon.com/gp/mas/your-account/myapps/yoursubscriptions) if the deep link is unavailable (e.g. non-Amazon device)Store.managementUrlfor offline entitlements consistencyTest plan
amzn://deep link opens Amazon App Store subscription management🤖 Generated with Claude Code
Note
Medium Risk
Changes the Customer Center cancel flow to launch an Amazon Appstore deep link before falling back to a web
managementURL, which could affect subscription-management navigation on Amazon/non-Amazon devices. Limited scope and covered by new unit tests, but involves external intent handling.Overview
Improves Amazon subscription cancellation/management from Customer Center by trying the
amzn://apps/library/subscriptionsdeep link first and falling back to the backend-provided webmanagementURLwhen the deep link can’t be opened.Also adds an Amazon management URL constant and wires it into
Store.managementUrl(used for offline entitlements consistency), with new tests covering the deep-link and fallback behavior.Written by Cursor Bugbot for commit f7214cc. This will update automatically on new commits. Configure here.