1

I desire to create a button labeled as "Manage your subscription", which will perform an action of opening the subscriptions manager of the runtime platform(ios or android). This would avoid to code requisitions to Google Play's and App Store's API.

For example, this will open the manager for some settings of the runtime platform:

Xamarin.Essentials.AppInfo.ShowSettingsUI();

How can I achieve something like that for subscriptions?

Éder Rocha
  • 1,538
  • 11
  • 29

1 Answers1

2

I was able to achieve this by deep linking to these urls:

For android play store => https://play.google.com/store/account/subscriptions

For ios app store => https://apps.apple.com/account/subscriptions

Éder Rocha
  • 1,538
  • 11
  • 29
  • Thanks, @Éder Rocha. Could give a hint about how to use deep linking for this? I created a URL scheme and an OpenUrl override in AppDelegate, but when I access the url, the OpenUrl override is not reached. I am using WebView. – BillF Sep 11 '22 at 05:47