Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to link to all of a developer's Google Play Store apps?

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)?

like image 746
Ethan Allen Avatar asked Nov 29 '12 17:11

Ethan Allen


People also ask

Can you link Google Play accounts?

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.

Can I transfer Google Play developer account?

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.


1 Answers

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.

like image 136
PearsonArtPhoto Avatar answered Oct 05 '22 23:10

PearsonArtPhoto