diff --git a/app/src/main/java/protect/card_locker/NotificationInfo.kt b/app/src/main/java/protect/card_locker/NotificationInfo.kt index d104883ed..356e11fb7 100644 --- a/app/src/main/java/protect/card_locker/NotificationInfo.kt +++ b/app/src/main/java/protect/card_locker/NotificationInfo.kt @@ -4,7 +4,6 @@ object NotificationInfo { object WearBluetooth { const val NOTIFICATION_ID = 1001 const val CHANNEL_ID = "catima_wear_bt" - const val PAIRING_NOTIFICATION_ID = 1002 const val PAIRING_CHANNEL_ID = "catima_wear_bt_pairing" } } diff --git a/app/src/main/java/protect/card_locker/wearos/BluetoothPairingNotificationManager.kt b/app/src/main/java/protect/card_locker/wearos/BluetoothPairingNotificationManager.kt index 2919d11a5..a9eb93669 100644 --- a/app/src/main/java/protect/card_locker/wearos/BluetoothPairingNotificationManager.kt +++ b/app/src/main/java/protect/card_locker/wearos/BluetoothPairingNotificationManager.kt @@ -87,7 +87,7 @@ object BluetoothPairingNotificationManager { ) val notification = NotificationCompat.Builder(context, NotificationInfo.WearBluetooth.PAIRING_CHANNEL_ID) - .setSmallIcon(R.drawable.ic_launcher_monochrome) + .setSmallIcon(R.drawable.ic_notification_catima) .setContentTitle(context.getString(titleRes, deviceName)) .setContentText(context.getString(messageRes, deviceName)) .setStyle(NotificationCompat.BigTextStyle().bigText(context.getString(messageRes, deviceName))) diff --git a/app/src/main/java/protect/card_locker/wearos/BluetoothServerService.kt b/app/src/main/java/protect/card_locker/wearos/BluetoothServerService.kt index c582ffde8..17670195b 100644 --- a/app/src/main/java/protect/card_locker/wearos/BluetoothServerService.kt +++ b/app/src/main/java/protect/card_locker/wearos/BluetoothServerService.kt @@ -74,7 +74,7 @@ class BluetoothServerService : Service() { } val notification = NotificationCompat.Builder(this, CHANNEL_ID) .setContentTitle(getString(R.string.wear_bt_notification_title)) - .setSmallIcon(R.drawable.ic_launcher_monochrome) + .setSmallIcon(R.drawable.ic_notification_sync) .setPriority(NotificationCompat.PRIORITY_MIN) .setSilent(true) .build() diff --git a/app/src/main/res/drawable-anydpi-v24/ic_notification_catima.xml b/app/src/main/res/drawable-anydpi-v24/ic_notification_catima.xml new file mode 100644 index 000000000..c6accecce --- /dev/null +++ b/app/src/main/res/drawable-anydpi-v24/ic_notification_catima.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable-anydpi-v24/ic_notification_sync.xml b/app/src/main/res/drawable-anydpi-v24/ic_notification_sync.xml new file mode 100644 index 000000000..a0dc4c218 --- /dev/null +++ b/app/src/main/res/drawable-anydpi-v24/ic_notification_sync.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable-hdpi/ic_notification_catima.png b/app/src/main/res/drawable-hdpi/ic_notification_catima.png new file mode 100644 index 000000000..30ffbfd09 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_notification_catima.png differ diff --git a/app/src/main/res/drawable-hdpi/ic_notification_sync.png b/app/src/main/res/drawable-hdpi/ic_notification_sync.png new file mode 100644 index 000000000..7ebc25cc9 Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ic_notification_sync.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_notification_catima.png b/app/src/main/res/drawable-mdpi/ic_notification_catima.png new file mode 100644 index 000000000..c0bd97635 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_notification_catima.png differ diff --git a/app/src/main/res/drawable-mdpi/ic_notification_sync.png b/app/src/main/res/drawable-mdpi/ic_notification_sync.png new file mode 100644 index 000000000..ef081c45c Binary files /dev/null and b/app/src/main/res/drawable-mdpi/ic_notification_sync.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_notification_catima.png b/app/src/main/res/drawable-xhdpi/ic_notification_catima.png new file mode 100644 index 000000000..c99b6db4d Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_notification_catima.png differ diff --git a/app/src/main/res/drawable-xhdpi/ic_notification_sync.png b/app/src/main/res/drawable-xhdpi/ic_notification_sync.png new file mode 100644 index 000000000..140cb2a09 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/ic_notification_sync.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_notification_catima.png b/app/src/main/res/drawable-xxhdpi/ic_notification_catima.png new file mode 100644 index 000000000..90e143d9f Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_notification_catima.png differ diff --git a/app/src/main/res/drawable-xxhdpi/ic_notification_sync.png b/app/src/main/res/drawable-xxhdpi/ic_notification_sync.png new file mode 100644 index 000000000..303156240 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/ic_notification_sync.png differ