Reputation: 645
i want to record both incoming and outgoing calls. is it possible in android.
i don't want to use Speaker mode. want without MIC.
i search a lot of but there is nothing to seems work.
please give me suggestion.
Upvotes: 1
Views: 937
Reputation: 54732
you can not record call in all handsets. Only in handsets which allowed the api to record voice call, you will be able to record a call. in those handsets you can set the audiosource of mediarecorder by using following.
MediaRecorder.setAudioSource(MediaRecorder.AudioSource.VOICE_DOWNLINK | MediaRecorder.AudioSource.VOICE_UPLINK )
Upvotes: 2