0

For Facebook/Whatsapp/Twitter, there is this option on the notification setting page of Android: "Home screen app icon badge" screenshot attached. enter image description here

How Can I get this first option for my app, where I have only these two options: enter image description here

I couldn't find any relevant information on the web. Any help will be appreciated.

Rahul
  • 3,293
  • 2
  • 31
  • 43
user1590595
  • 795
  • 2
  • 13
  • 37

1 Answers1

0

When you build a notification you can request access to show badge on app launcher.

You can try something like this

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        getSystemService(NotificationManager::class.java)?.createNotificationChannel(
            NotificationChannel(
                CHANNEL_STRING_ID,
                resources.getString(R.string.app_name),
                NotificationManager.IMPORTANCE_HIGH
            ).apply {
                enableVibration(true)
                setShowBadge(true)
            })
    }