Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Application developer name [closed]

I want to get the application developer name. Somebody please show me how I can get this. i tried but only get with installed applications and their icon . i want to display developer name

like image 479
Namrata Avatar asked Sep 04 '26 05:09

Namrata


1 Answers

to get a list of the installed applications installed do the following :

final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
final List<ResolveInfo> pkgAppsList = context.getPackageManager().queryIntentActivities( mainIntent, 0);

the CATEGORY_LAUNCHER means it should appear in the Launcher as a top-level application .

the queryIntentActivities Retrieve all activities that can be performed for the given intent.

To get the developer name , there is no offical api from Google to do so.

but there is an UNoffical Api that allows you to do so , check this Android Market Api and check the example provided in the link .

Please give me some feedback

Hope that Helps


Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!