In my app, I want to allow users to open the Google Play store to see all of my other apps. In iOS, I just use the following (example) iTunes link to pull them all up:
https://itunes.apple.com/us/artist/electronic-arts/id284800461?mt=8
Is there a way to get ALL of my apps to show (besides a search for my company name, which is rather generic)?
Send a link requestUnder "From Google", find "Google Play", then click Details. If you haven't linked any accounts yet, click Link. If you already have linked accounts, click the plus button to create a new link request. Enter the email address of the owner of the Google Play Developer account you'd like to link.
Before you can submit a transfer request from your original account to a different account (known as your target account), both Google Play developer accounts need to be registered and active. To confirm an account is active, make sure: Original account: You're able to sign in.
Search for a product, including the pub:
tag, as can be found at the API page entitled Linking to your products. Note that searching via a URL requires a different method. Both are included here. Start an intent like this:
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://search?q=pub:Developer+Name+Here")));
} catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/developer?id=Developer+Name+Here")));
}
Note that the market doesn't work on the emulator, so this code will instead pull it up in a URL. This method courtesy of this answer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With