Here we can find some useful method using PackageManager,
Below method will help to get the app name using package name
private String getAppNameFromPackage(String packageName, Context context) {
Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATE...