Speaker on not working during calls Android 11

how to turn speaker on/off programmatically in android Pie and UP

답변 1.

답변 2.

Intent 사용

val uri = Uri.fromParts("tel", PHONE_NUMBER, null)
val intentCall = Intent(Intent.ACTION_CALL, uri).apply {
    putExtra(TelecomManager.EXTRA_START_CALL_WITH_SPEAKERPHONE, true)
    flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
startActivity(intentCall)

TelecomManager.placeCall 사용