Update Notifications Icon (Email)

Rest in pieces little gmail icon :(

Change-Id: I14459cba33cf61f6717d922bdb006d8d56ad893c
This commit is contained in:
Rohan Shah 2014-08-15 17:54:08 -07:00
parent 7941b406cf
commit b5e710f447
8 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="@string/account_manager_type_exchange"
android:icon="@mipmap/ic_launcher_mail"
android:smallIcon="@drawable/ic_notification_mail_16dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/exchange_name_alternate"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -23,7 +23,7 @@
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="@string/account_manager_type_exchange"
android:icon="@mipmap/ic_launcher_mail"
android:smallIcon="@drawable/ic_notification_mail_16dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/exchange_name"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -23,7 +23,7 @@
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="@string/account_manager_type_imap"
android:icon="@mipmap/ic_launcher_mail"
android:smallIcon="@drawable/ic_notification_mail_16dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/imap_name"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -23,7 +23,7 @@
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.android.exchange"
android:icon="@mipmap/ic_launcher_mail"
android:smallIcon="@drawable/ic_notification_mail_16dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/exchange_name"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -23,7 +23,7 @@
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.android.email"
android:icon="@mipmap/ic_launcher_mail"
android:smallIcon="@drawable/ic_notification_mail_16dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/exchange_name"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -23,7 +23,7 @@
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="@string/account_manager_type_legacy_imap"
android:icon="@mipmap/ic_launcher_mail"
android:smallIcon="@drawable/ic_notification_mail_16dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/imap_name"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -23,7 +23,7 @@
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="@string/account_manager_type_pop3"
android:icon="@mipmap/ic_launcher_mail"
android:smallIcon="@drawable/ic_notification_mail_16dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/pop3_name"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -146,7 +146,7 @@ public class NotificationController {
.setContentIntent(pending)
.setLargeIcon(largeIcon)
.setNumber(number == null ? 0 : number)
.setSmallIcon(R.drawable.ic_notification_mail_16dp)
.setSmallIcon(R.drawable.ic_notification_mail_24dp)
.setWhen(mClock.getTime())
.setTicker(ticker)
.setOngoing(ongoing);