android-people
android-people copied to clipboard
+ replace executor to coroutine + adapt receive content listener + remove message builder + make Contact.kt sealed
Hi I got my bubble notifications working by following the steps on the official documentation https://developer.android.com/guide/topics/ui/conversations . Now when dismissing a bubble on purpose through dragging it into the X...
APK Minimum API Level is 30 but my device API is 28 How to fix that?
I got crash by following these steps: 1. Click to Sheep 2. Click Open Bubble chat by clicking on action bar menu icon 3. Wait for incoming chat via bubble...
I've tried to adapt this code for use in a foreground service. That is, instead of: `notificationManager.notify(chat.contact.id.toInt(), builder.build())` ... I would like to do: `startForeground(NOTIFICATION_ID, builder.build()) ` However, I've been...