Reputation: 57
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
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