Harish
Harish

Reputation: 63

How do I show my android app list in the android market app

I would like to show a list of my android apps on clicking a "more apps" link from any of my app. Can anyone please tell me know to do that ?

Upvotes: 2

Views: 514

Answers (2)

Alexander Fuchs
Alexander Fuchs

Reputation: 1358

String url = "market://search?q=pub:YOUR_PUBLISHER_NAME";
    Intent i = new Intent(Intent.ACTION_VIEW);
    i.setData(Uri.parse(url));
    startActivity(i);

Upvotes: 1

Shreyash Mahajan
Shreyash Mahajan

Reputation: 23596

You have to call the link which which you have created your app. Not the app name but the Company name or your personal name. ex.

See this link

So goto market site, then select your company name and use that link to show your app to other.

Enjoy. :)

Upvotes: 1

Related Questions