From 3bc043e04fca0c069718269162a66b391cfc4154 Mon Sep 17 00:00:00 2001 From: Shoe Shiner <52628368+shoeshiner@users.noreply.github.com> Date: Tue, 24 Dec 2024 02:30:58 +0700 Subject: [PATCH] Update BubbleService.kt --- .../kotlin/dev/moaz/dash_bubble/src/BubbleService.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/android/src/main/kotlin/dev/moaz/dash_bubble/src/BubbleService.kt b/android/src/main/kotlin/dev/moaz/dash_bubble/src/BubbleService.kt index 30a4b8a..afb06b4 100644 --- a/android/src/main/kotlin/dev/moaz/dash_bubble/src/BubbleService.kt +++ b/android/src/main/kotlin/dev/moaz/dash_bubble/src/BubbleService.kt @@ -56,13 +56,13 @@ class BubbleService : FloatingBubbleService() { val bubbleIcon = Helpers.getDrawableId( applicationContext, bubbleOptions.bubbleIcon, - R.drawable.default_bubble_icon + R.drawable.screen_capture_icon ) val closeIcon = Helpers.getDrawableId( applicationContext, - bubbleOptions.closeIcon, - R.drawable.ic_close_bubble + bubbleOptions.closeIco, + R.drawable.trash_shadow_icon ) return FloatingBubble.Builder(this) @@ -99,7 +99,7 @@ class BubbleService : FloatingBubbleService() { val notificationIcon = Helpers.getDrawableId( applicationContext, notificationOptions.icon, - R.drawable.default_bubble_icon + R.drawable.screen_capture_icon ) val notification = NotificationCompat.Builder(this, channelId()) @@ -122,4 +122,4 @@ class BubbleService : FloatingBubbleService() { if (!bubbleOptions.keepAliveWhenAppExit!!) stopSelf() } -} \ No newline at end of file +}