medyo / android-about-page

Create an awesome About Page for your Android App in 2 minutes
2.04k stars 283 forks source link

Why market place #132

Closed HBiSoft closed 4 years ago

HBiSoft commented 4 years ago

It doesn't look like this library is still active, but anyway. You are using market place (which is old and not used anymore):

Uri uri = Uri.parse("market://details?id=" + id);
Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
playStoreElement.setIntent(goToMarket);

You should use Play Store instead:

Uri uri = Uri.parse("https://play.google.com/store/apps/details?id=" + id);
Intent goToMarket = new Intent(Intent.ACTION_VIEW, uri);
playStoreElement.setIntent(goToMarket);

By leaving it as it is, it will display a popup message for most devices saying To view this content install and setup a web browsing app

medyo commented 4 years ago

Hi @HBiSoft,

Please do a pull request so I can merge it Thank you

medyo commented 4 years ago

Fixed and merged