Skip to content

Commit

Permalink
Update BubbleService.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
shoeshiner authored Dec 23, 2024
1 parent 1c82110 commit 3bc043e
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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())
Expand All @@ -122,4 +122,4 @@ class BubbleService : FloatingBubbleService() {

if (!bubbleOptions.keepAliveWhenAppExit!!) stopSelf()
}
}
}

0 comments on commit 3bc043e

Please sign in to comment.