Redirect user to the Subscription page in the playstore
Thanks for the code, it helps.
Just to add a little in the URL,
https://play.google.com/store/account/subscriptions
to take you directly at the Subscriptions screen in the phone.
At google io 2018 they announced this link
https://play.google.com/store/account/subscriptions?sku=XXX&package=YYY
Just replace sku and package
Ok, so I haven't received a better answer (actually... no answer at all..yet). For other that might research an answer, here is mine :
Intent browserIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse("https://play.google.com/store/account/subscriptions"));
startActivity(browserIntent);
Note: It seems, that the market:
syntax is deprecated and the web intent is automatically forwarded to the PlayStore app.