Kevin
Kevin

Reputation: 1

What information can an Android App tell about other apps on a phone?

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

Answers (2)

Abhishek
Abhishek

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

Related Questions