Suren
Suren

Reputation: 57

How to check the play store catrgory of installed app in android

i am not able to show the play store category of installed apps in android.

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

Upvotes: 0

Views: 1277

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006984

There is nothing in Android that tracks "the play store category of installed apps". After all, Android apps do not have to be installed via the Play Store.

Upvotes: 1

Related Questions