diff --git a/res/drawable-hdpi-v11/ic_notification.png b/res/drawable-hdpi-v11/ic_notification.png new file mode 100644 index 00000000..9ffbdda4 Binary files /dev/null and b/res/drawable-hdpi-v11/ic_notification.png differ diff --git a/res/drawable-hdpi/ic_notification.png b/res/drawable-hdpi/ic_notification.png new file mode 100644 index 00000000..14c518e2 Binary files /dev/null and b/res/drawable-hdpi/ic_notification.png differ diff --git a/res/drawable-mdpi-v11/ic_notification.png b/res/drawable-mdpi-v11/ic_notification.png new file mode 100644 index 00000000..985cef88 Binary files /dev/null and b/res/drawable-mdpi-v11/ic_notification.png differ diff --git a/res/drawable-mdpi/ic_notification.png b/res/drawable-mdpi/ic_notification.png new file mode 100644 index 00000000..28d34df5 Binary files /dev/null and b/res/drawable-mdpi/ic_notification.png differ diff --git a/res/drawable-xhdpi-v11/ic_notification.png b/res/drawable-xhdpi-v11/ic_notification.png new file mode 100644 index 00000000..c9b50fb3 Binary files /dev/null and b/res/drawable-xhdpi-v11/ic_notification.png differ diff --git a/res/drawable-xhdpi/ic_notification.png b/res/drawable-xhdpi/ic_notification.png new file mode 100644 index 00000000..d4848738 Binary files /dev/null and b/res/drawable-xhdpi/ic_notification.png differ diff --git a/res/drawable-xxhdpi-v11/ic_notification.png b/res/drawable-xxhdpi-v11/ic_notification.png new file mode 100644 index 00000000..0073f68f Binary files /dev/null and b/res/drawable-xxhdpi-v11/ic_notification.png differ diff --git a/res/drawable-xxhdpi/ic_notification.png b/res/drawable-xxhdpi/ic_notification.png new file mode 100644 index 00000000..19c7c1aa Binary files /dev/null and b/res/drawable-xxhdpi/ic_notification.png differ diff --git a/res/drawable-xxxhdpi-v11/ic_notification.png b/res/drawable-xxxhdpi-v11/ic_notification.png new file mode 100644 index 00000000..123a5cd2 Binary files /dev/null and b/res/drawable-xxxhdpi-v11/ic_notification.png differ diff --git a/res/drawable-xxxhdpi/ic_notification.png b/res/drawable-xxxhdpi/ic_notification.png new file mode 100644 index 00000000..3a1514c1 Binary files /dev/null and b/res/drawable-xxxhdpi/ic_notification.png differ diff --git a/src/org/kde/kdeconnect/Device.java b/src/org/kde/kdeconnect/Device.java index 6341b77b..765daf54 100644 --- a/src/org/kde/kdeconnect/Device.java +++ b/src/org/kde/kdeconnect/Device.java @@ -495,7 +495,7 @@ public class Device implements BaseLink.PackageReceiver { .setContentText(res.getString(R.string.tap_to_answer)) .setContentIntent(pendingIntent) .setTicker(res.getString(R.string.pair_requested)) - .setSmallIcon(android.R.drawable.ic_menu_help) + .setSmallIcon(R.drawable.ic_notification) .setAutoCancel(true) .setDefaults(Notification.DEFAULT_ALL) .build(); diff --git a/src/org/kde/kdeconnect/Plugins/PingPlugin/PingPlugin.java b/src/org/kde/kdeconnect/Plugins/PingPlugin/PingPlugin.java index 62468bc5..29f1ade7 100644 --- a/src/org/kde/kdeconnect/Plugins/PingPlugin/PingPlugin.java +++ b/src/org/kde/kdeconnect/Plugins/PingPlugin/PingPlugin.java @@ -77,7 +77,7 @@ public class PingPlugin extends Plugin { .setContentText(message) .setContentIntent(resultPendingIntent) .setTicker(message) - .setSmallIcon(android.R.drawable.ic_dialog_alert) + .setSmallIcon(R.drawable.ic_notification) .setAutoCancel(true) .setDefaults(Notification.DEFAULT_ALL) .build();