On older versions the following code works.
ActivityManager am = (ActivityManager) getApplicationContext().getSystemService(ACTIVITY_SERVICE);
String pkgname = am.getRunningTasks(1).get(0).topActivity.getPackageName();
It no longer works on Android L. It always returns the package name of the launcher. How can I get it in Android L?