Reputation: 63
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
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
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.
So goto market site, then select your company name and use that link to show your app to other.
Enjoy. :)
Upvotes: 1