<How do I trigger the speakerphone automatically o...
# stackoverflow
r
How do I trigger the speakerphone automatically on an incoming call? Android 12 or Higher My application makes a phone automatically answer incoming calls for a predefined length of time. However, I can't manage to trigger the speakerphone, which would also activate automatically when these incoming calls are received. Does this feature exist on Android 12 or higher? public void answerIncomingCall(Context context) throws InterruptedException { TelecomManager telecomManager = (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE); AudioManager audioManager =...