I'm trying to list all running Apps but i don't know why i can't do it.
When i try to run the following command, i just have mine application returned.
List<ActivityManager.RunningAppProcessInfo> listProcesses = manager.getRunningAppProcesses();
Many sites tells to use
List<ActivityManager.RunningTaskInfo> alltasks = am.getRunningTasks(Integer.MAX_VALUE);
But also just returned my application
Is there anything to do without root to get all task/process running ?