get app category on android

get app category on android
‮r‬efer to:lautturi.com
PackageManager pm = context.getPackageManager();

ApplicationInfo applicationInfo = pm.getApplicationInfo(packageName, 0);

if (android.os.Build.VERSION_CODES.O <= android.os.Build.VERSION.SDK_INT) {
    int appCategory = applicationInfo.category;
    String categoryTitle = (String) ApplicationInfo.getCategoryTitle(context, appCategory)
    ...
	...
}
Created Time:2017-09-11 22:24:52  Author:lautturi