setIncomingCallChannelName
Sets the notification channel name for incoming VoIP call notifications.
This name is displayed in the Android notification settings where users can customize the notification behavior for incoming calls. The channel is used for incoming call notifications with ringtone and full-screen intent.
Example:
class SettingsActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// Customize notification channels
PushwooshCallSettings.setIncomingCallChannelName("Video Calls")
PushwooshCallSettings.setOngoingCallChannelName("Active Calls")
}
}Content copied to clipboard
Parameters
name
the channel name to display in notification settings. Default is "Incoming Calls" if not set.