expanded notifications should be on by default for SDK 16+

This commit is contained in:
Nathan Freitas 2016-11-03 12:44:41 -04:00
parent 204b3f0441
commit 45f7ae23c6
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class Prefs {
}
public static boolean expandedNotifications() {
return prefs.getBoolean(PREF_EXPANDED_NOTIFICATIONS, false);
return prefs.getBoolean(PREF_EXPANDED_NOTIFICATIONS, true);
}
public static boolean useDebugLogging() {