diff --git a/res/mipmap-hdpi/ic_launcher.png b/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..ff2391ea4 Binary files /dev/null and b/res/mipmap-hdpi/ic_launcher.png differ diff --git a/res/mipmap-mdpi/ic_launcher.png b/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..d3eceacaa Binary files /dev/null and b/res/mipmap-mdpi/ic_launcher.png differ diff --git a/res/mipmap-xhdpi/ic_launcher.png b/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..a969e0d31 Binary files /dev/null and b/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/res/mipmap-xxhdpi/ic_launcher.png b/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..500cedf6c Binary files /dev/null and b/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/res/mipmap-xxxhdpi/ic_launcher.png b/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..58e30edd0 Binary files /dev/null and b/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/org/linphone/LinphoneService.java b/src/org/linphone/LinphoneService.java index ef9231eff..56a7f9b2c 100644 --- a/src/org/linphone/LinphoneService.java +++ b/src/org/linphone/LinphoneService.java @@ -152,7 +152,7 @@ public final class LinphoneService extends Service { Bitmap bm = null; try { - bm = BitmapFactory.decodeResource(getResources(), R.drawable.linphone_logo); + bm = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher); } catch (Exception e) { } @@ -361,7 +361,7 @@ public final class LinphoneService extends Service { Bitmap bm = null; try { - bm = BitmapFactory.decodeResource(getResources(), R.drawable.linphone_logo); + bm = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher); } catch (Exception e) { } mCustomNotif = Compatibility.createNotification(this, title, message, iconResourceID, 0, bm, notifContentIntent, isOngoingEvent,notifcationsPriority); @@ -533,7 +533,7 @@ public final class LinphoneService extends Service { Bitmap bm = null; try { - bm = BitmapFactory.decodeResource(getResources(), R.drawable.linphone_logo); + bm = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher); } catch (Exception e) { } mNotif = Compatibility.createNotification(this, mNotificationTitle, text, R.drawable.status_level, 0, bm, mNotifContentIntent, true,notifcationsPriority);