Revert "Update notification icon asset names (Email)"

Need to revert - doesn't build on Mac OS

This reverts commit cc82965ac9.

Change-Id: I98c03ebe85df29ff146d0cee6ae112ab36e6d8b0
This commit is contained in:
Rohan Shah 2014-10-13 18:58:56 +00:00
parent cc82965ac9
commit 72f6a2432e
8 changed files with 9 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_wht_24dp"
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_wht_24dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/exchange_eas_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_wht_24dp"
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_wht_24dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/exchange_eas_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_wht_24dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/exchange_eas_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_wht_24dp"
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_wht_24dp"
android:smallIcon="@drawable/ic_notification_mail_24dp"
android:label="@string/pop3_name"
android:accountPreferences="@xml/account_preferences"
/>

View File

@ -26,6 +26,7 @@ import android.content.Context;
import android.content.Intent;
import android.database.ContentObserver;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Handler;
import android.os.Looper;
@ -143,7 +144,7 @@ public class EmailNotificationController implements NotificationController {
.setContentText(contentText)
.setContentIntent(pending)
.setNumber(number == null ? 0 : number)
.setSmallIcon(R.drawable.ic_notification_mail_wht_24dp)
.setSmallIcon(R.drawable.ic_notification_mail_24dp)
.setWhen(mClock.getTime())
.setTicker(ticker)
.setOngoing(ongoing);