--- a/AndroidManifest.xml Tue Apr 21 19:41:58 2009 +0200
+++ b/AndroidManifest.xml Tue Apr 21 19:46:44 2009 +0200
@@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.beem.project.beem" android:versionCode="1"
android:versionName="1.0">
- <application android:label="@string/app_name" android:name="BeemApplication" android:theme="@style/customtheme.contactList" android:icon="@drawable/logo">
+ <application android:label="@string/app_name" android:name="BeemApplication" android:theme="@style/customtheme.contactList" android:icon="@drawable/signal">
<activity android:name=".ui.ContactList" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
--- a/src/com/beem/project/beem/service/BeemChatManager.java Tue Apr 21 19:41:58 2009 +0200
+++ b/src/com/beem/project/beem/service/BeemChatManager.java Tue Apr 21 19:46:44 2009 +0200
@@ -162,7 +162,7 @@
private void notifyNewChat(IChat chat) {
try {
String text = chat.getParticipant().getJID();
- Notification notif = new Notification(com.beem.project.beem.R.drawable.logo, text, System
+ Notification notif = new Notification(com.beem.project.beem.R.drawable.signal, text, System
.currentTimeMillis());
notif.defaults = Notification.DEFAULT_ALL;
notif.flags = Notification.FLAG_AUTO_CANCEL;
--- a/src/com/beem/project/beem/service/XmppFacade.java Tue Apr 21 19:41:58 2009 +0200
+++ b/src/com/beem/project/beem/service/XmppFacade.java Tue Apr 21 19:46:44 2009 +0200
@@ -97,7 +97,7 @@
Notification mStatusNotification;
String text = (msg == null ? "" : msg);
- mStatusNotification = new Notification(com.beem.project.beem.R.drawable.logo, text, System.currentTimeMillis());
+ mStatusNotification = new Notification(com.beem.project.beem.R.drawable.signal, text, System.currentTimeMillis());
mStatusNotification.defaults = Notification.DEFAULT_ALL;
mStatusNotification.flags = Notification.FLAG_NO_CLEAR;