Home > Blockchain >  Is it possible to open Android / iOS subscriptions manager from a Xamarin app?
Is it possible to open Android / iOS subscriptions manager from a Xamarin app?

Time:03-29

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?

CodePudding user response:

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

  • Related