diff --git a/android/app/src/main/java/org/communiquons/comunic/independentnotifications/NotificationsService.java b/android/app/src/main/java/org/communiquons/comunic/independentnotifications/NotificationsService.java index 10fff31..92f512e 100644 --- a/android/app/src/main/java/org/communiquons/comunic/independentnotifications/NotificationsService.java +++ b/android/app/src/main/java/org/communiquons/comunic/independentnotifications/NotificationsService.java @@ -72,7 +72,7 @@ public class NotificationsService extends Service { Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID) .setContentTitle("Comunic") .setContentText(getText(R.string.independent_push_notification_notification_text)) - .setSmallIcon(R.drawable.splash_icon) + .setSmallIcon(R.drawable.ic_notifications) .setContentIntent(pendingIntent) .build(); startForeground(1, notification); diff --git a/android/app/src/main/res/drawable-anydpi-v24/ic_notifications.xml b/android/app/src/main/res/drawable-anydpi-v24/ic_notifications.xml new file mode 100644 index 0000000..ddc48ab --- /dev/null +++ b/android/app/src/main/res/drawable-anydpi-v24/ic_notifications.xml @@ -0,0 +1,17 @@ + + + + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/drawable-hdpi/ic_notifications.png b/android/app/src/main/res/drawable-hdpi/ic_notifications.png new file mode 100644 index 0000000..ecf4bc7 Binary files /dev/null and b/android/app/src/main/res/drawable-hdpi/ic_notifications.png differ diff --git a/android/app/src/main/res/drawable-mdpi/ic_notifications.png b/android/app/src/main/res/drawable-mdpi/ic_notifications.png new file mode 100644 index 0000000..154cd3a Binary files /dev/null and b/android/app/src/main/res/drawable-mdpi/ic_notifications.png differ diff --git a/android/app/src/main/res/drawable-xhdpi/ic_notifications.png b/android/app/src/main/res/drawable-xhdpi/ic_notifications.png new file mode 100644 index 0000000..7dd2a04 Binary files /dev/null and b/android/app/src/main/res/drawable-xhdpi/ic_notifications.png differ diff --git a/android/app/src/main/res/drawable-xxhdpi/ic_notifications.png b/android/app/src/main/res/drawable-xxhdpi/ic_notifications.png new file mode 100644 index 0000000..d160629 Binary files /dev/null and b/android/app/src/main/res/drawable-xxhdpi/ic_notifications.png differ