I tried it and use the following code for recording outgoing calls but it does not..
@Override
public void onReceive(Context context, Intent intent)
{
This can be solved with API level 8+. Set your audio source for media recorder as phone uplink, downlink, or both.
recorder.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL); //Voice downlink/ Uplink
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setAudioEncoder(AudioEncoder.AAC );
But beware of the law and regulations before doing this.