diff options
author | Chris Wren <cwren@android.com> | 2013-08-04 01:04:35 -0400 |
---|---|---|
committer | Chris Wren <cwren@android.com> | 2013-08-04 01:04:35 -0400 |
commit | f76ff0552bbef531c33ef0cb322932d03b7e6632 (patch) | |
tree | c56e3606ba743c61578d38f1656a7933bd4b7a9d /core/java/com | |
parent | 5c7132560aac40f291726095b761a0c46ee32b09 (diff) | |
download | frameworks_base-f76ff0552bbef531c33ef0cb322932d03b7e6632.zip frameworks_base-f76ff0552bbef531c33ef0cb322932d03b7e6632.tar.gz frameworks_base-f76ff0552bbef531c33ef0cb322932d03b7e6632.tar.bz2 |
disable notification scorer by default.
Bug: 10163077
Change-Id: Icd03786dfe59cb26281738ae0be28d14cb5741f9
Diffstat (limited to 'core/java/com')
-rw-r--r-- | core/java/com/android/internal/notification/DemoContactNotificationScorer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/com/android/internal/notification/DemoContactNotificationScorer.java b/core/java/com/android/internal/notification/DemoContactNotificationScorer.java index 081a371..62529e9 100644 --- a/core/java/com/android/internal/notification/DemoContactNotificationScorer.java +++ b/core/java/com/android/internal/notification/DemoContactNotificationScorer.java @@ -163,7 +163,7 @@ public class DemoContactNotificationScorer implements NotificationScorer { if (DBG) Slog.v(TAG, "Initializing " + getClass().getSimpleName() + "."); mContext = context; mEnabled = ENABLE_CONTACT_SCORER && 1 == Settings.Global.getInt( - mContext.getContentResolver(), SETTING_ENABLE_SCORER, 1); + mContext.getContentResolver(), SETTING_ENABLE_SCORER, 0); } @Override |