# HG changeset patch # User Jean-Manuel ¨dasilvj¨ Da Silva # Date 1257965665 -3600 # Node ID 62f0963930339d6b5b7937fc72112beaabd70d27 # Parent 2674b5a975374591dc34f11827a5f30e114eed2b Suppression de fossiles, le retour. diff -r 2674b5a97537 -r 62f096393033 res/drawable/beem_contactlist_header_1.png Binary file res/drawable/beem_contactlist_header_1.png has changed diff -r 2674b5a97537 -r 62f096393033 res/drawable/beem_sendim_header_1.png Binary file res/drawable/beem_sendim_header_1.png has changed diff -r 2674b5a97537 -r 62f096393033 res/drawable/beem_sendim_textview.png Binary file res/drawable/beem_sendim_textview.png has changed diff -r 2674b5a97537 -r 62f096393033 res/drawable/closed.png Binary file res/drawable/closed.png has changed diff -r 2674b5a97537 -r 62f096393033 src/com/beem/project/beem/jingle/demo/JingleCallActivity.java --- a/src/com/beem/project/beem/jingle/demo/JingleCallActivity.java Wed Nov 11 19:36:36 2009 +0100 +++ b/src/com/beem/project/beem/jingle/demo/JingleCallActivity.java Wed Nov 11 19:54:25 2009 +0100 @@ -47,7 +47,7 @@ java.security.Security.addProvider(new com.sun.security.sasl.Provider()); super.onCreate(savedInstanceState); setContentView(R.layout.jingle_call_activity); - mConf = new ConnectionConfiguration("10.0.2.2", 5222); + mConf = new ConnectionConfiguration("10.0.2.2", DEFAULT_XMPP_PORT); // mConf = new ConnectionConfiguration("elyzion.net", // DEFAULT_XMPP_PORT); mConf.setSecurityMode(SecurityMode.required); diff -r 2674b5a97537 -r 62f096393033 src/com/beem/project/beem/service/XmppConnectionAdapter.java --- a/src/com/beem/project/beem/service/XmppConnectionAdapter.java Wed Nov 11 19:36:36 2009 +0100 +++ b/src/com/beem/project/beem/service/XmppConnectionAdapter.java Wed Nov 11 19:54:25 2009 +0100 @@ -343,7 +343,7 @@ @Override public void processPacket(Packet packet) { String from = packet.getFrom(); - Notification notif = new Notification(com.beem.project.beem.R.drawable.signal, mService + Notification notif = new Notification(android.R.drawable.stat_notify_more, mService .getString(R.string.AcceptContactRequest), System.currentTimeMillis()); notif.defaults = Notification.DEFAULT_ALL; notif.flags = Notification.FLAG_AUTO_CANCEL; @@ -443,7 +443,7 @@ @Override public void processPacket(Packet packet) { String from = packet.getFrom(); - Notification notif = new Notification(com.beem.project.beem.R.drawable.signal, mService + Notification notif = new Notification(android.R.drawable.stat_notify_more, mService .getString(R.string.AcceptContactRequest), System.currentTimeMillis()); notif.defaults = Notification.DEFAULT_ALL; notif.flags = Notification.FLAG_AUTO_CANCEL;