Reputation: 1
If I had an app that wanted to assess what other apps I had on my phone and make recommendations for new ones, what information can I read off the phone and send back to our server?
Upvotes: 0
Views: 98
Reputation: 1779
final Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);
final List pkgAppsList = getPackageManager().queryIntentActivities( mainIntent, 0);
Upvotes: 0
Reputation: 33509
Try PackageManager: http://developer.android.com/reference/android/content/pm/PackageManager.html
Upvotes: 2