公式サイトの API Overview にも載っていますが、AndroidのバージョンLからgetRecentTasks()の挙動が変わります。っていうかDeprecated(非推奨)になりました。 英文を以下に貼り付けます。 If your app uses ActivityManager.getRecentTasks()… With the introduction of the new concurrent documents and activities tasks feature in the upcoming release (see Concurrent documents and activities in Recents screen below), the ActivityManager.getRecentTasks() method is now deprecated to improve user privacy. For backward compatibility, this method still returns a small subset of its data, including the calling application’s own tasks and possibly some other non-sensitive tasks (such as Home). If your app is using this method to retrieve its own tasks, use android.app.ActivityManager.getAppTasks() instead to retrieve that information. もしあなたのアプリがgetRecentTasks()を使っている場合。。。 ユーザーのプライバシー向上のため、バージョンLから ActivityManager.getRecentTasks() メソッドが非推奨になります。下位互換のため、このメソッドはまだ値を返しますが、LでgetRecentTasksを叩くと自分自身のタスク情報と非機密情報(ホームアプリのタスクなど)のみ返します。自分自身のタスク情報のみを取り出したい場合はgetAppTasks() を使ってください。 文章だ