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
Asked
Active
Viewed 509 times
1 Answers
2
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
-
hey hi i got the installed app but i want to show the developer name – Namrata Feb 03 '14 at 06:27
-
so you can get the installed applications ? but you want to get the developer name of the application ? – Feb 03 '14 at 06:32
-
sorry i dont think there is a possible way to do that – Feb 03 '14 at 06:42
-
i need like this.. Facebook.. by facebook, Inc. 6.0 – Namrata Feb 03 '14 at 06:44
-
**Official API**? Are you sure? – Paresh Mayani Feb 03 '14 at 06:52
-
sorry i updated my answer – Feb 03 '14 at 06:53