diff --git a/res/drawable-hdpi/icon_cached.png b/res/drawable-hdpi/icon_cached.png new file mode 100644 index 0000000000..48edf531d3 Binary files /dev/null and b/res/drawable-hdpi/icon_cached.png differ diff --git a/res/drawable-mdpi/icon_cached.png b/res/drawable-mdpi/icon_cached.png new file mode 100644 index 0000000000..4e3653e77f Binary files /dev/null and b/res/drawable-mdpi/icon_cached.png differ diff --git a/res/drawable-xhdpi/icon_cached.png b/res/drawable-xhdpi/icon_cached.png new file mode 100644 index 0000000000..5236455f98 Binary files /dev/null and b/res/drawable-xhdpi/icon_cached.png differ diff --git a/src/org/thoughtcrime/securesms/service/KeyCachingService.java b/src/org/thoughtcrime/securesms/service/KeyCachingService.java index 5b1c72d582..068b945be4 100644 --- a/src/org/thoughtcrime/securesms/service/KeyCachingService.java +++ b/src/org/thoughtcrime/securesms/service/KeyCachingService.java @@ -140,7 +140,7 @@ public class KeyCachingService extends Service { } private void foregroundService() { - Notification notification = new Notification(R.drawable.ic_menu_lock_holo_dark, "TextSecure Passphrase Cached", System.currentTimeMillis()); + Notification notification = new Notification(R.drawable.icon_cached, "TextSecure Passphrase Cached", System.currentTimeMillis()); Intent intent = new Intent(this, ConversationListActivity.class); PendingIntent launchIntent = PendingIntent.getActivity(getApplicationContext(), 0, intent, 0); notification.setLatestEventInfo(getApplicationContext(), "TextSecure Cached", "TextSecure Passphrase Cached", launchIntent);