I need to know when a package installed on the cell phone can send notifications here is the code where the applications that are on the cell phone are read and I need to know if it has notifications enabled through NotificationManagerCompat (areNotificationsEnabled ())
List<String> paquetenombre = new ArrayList<>();
Intent intent = new Intent(Intent.ACTION_MAIN,null);
intent.addCategory(Intent.CATEGORY_APP_MESSAGING);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED );
List<ResolveInfo> resolveInfoList = context1.getPackageManager().queryIntentActivities(intent,0);
, thanks in advance