Customise options in Group Channel Settings - Android UIKit - Kotlin

On iOS we have customised the chat settings screen:

  • Kept the notification settings option
  • Added “View Profile” and “Block” with custom actions.

We did this by:

  • Create a sub class of SBUGroupChannelSettingsModule.List
  • Override the function override func setupItems()
  • Keep the notificationSettgings item (createNotificationItem)
  • Adding two of my own items for View Profile and Block

We are struggling to find out how to create the equivalent implementation on Android. There does not seem to be the ability to change the items int he settings list.

Can any one help?