UIKit version : latest
OS : Android 12
In dark mode, ChatChannelActivity theme is light mode.
go back and click Chat again, it works
This is my code in onCreate()
when (resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK) {
Configuration.UI_MODE_NIGHT_YES -> {
SendBirdUIKit.setDefaultThemeMode(SendBirdUIKit.ThemeMode.Dark);
}
Configuration.UI_MODE_NIGHT_NO -> {
SendBirdUIKit.setDefaultThemeMode(SendBirdUIKit.ThemeMode.Light);
}
}