Toka Ali Amin
Results
1
comments of
Toka Ali Amin
I actually found a simple work around, using Android's AudioManager class solved both problems ``` val audioManager = getSystemService(Context.AUDIO_SERVICE) as AudioManager audioManager.mode = AudioManager.MODE_IN_COMMUNICATION audioManager.isSpeakerphoneOn = isSpeakerOn audioManager.isBluetoothScoOn = !isSpeakerOn...