It is known that we can send the intention, as described in the following link, and then redirects the user to Google Play.
Uri marketUri = Uri.parse("market://details?id=" + packageName);
Intent marketIntent = new Intent(Intent.ACTION_VIEW, marketUri);
startActivity(marketIntent);
But the problem is that all app stores, especially the Amazon App Store (in the Kindle), can handle this intention?
I know that the following URI should redirect the user to the Amazon app store:
http:
But, I do not want to have two binaries , one for regular Android and the other for Amazon.
source
share