sreejith
sreejith

Reputation: 272

is it possible to record calls in android 10+ devices?

not able to record calls in android 10+ phones

            recorder = MediaRecorder()
            recorder.setAudioSource(MediaRecorder.AudioSource.VOICE_COMMUNICATION)
            recorder.setOutputFormat(MediaRecorder.OutputFormat.AMR_NB)
            recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB)
            recorder.setOutputFile(path)
            recorder.prepare()
            recorder.start()

Upvotes: 1

Views: 110

Answers (0)

Related Questions