Call recording – make it work on Nexus 5X (rooting or custom ROM possible)
Not sure if it is a Nexus 5 specific issue but usually the class used to record calls is MediaRecorder. Have you tried to replace AudioRecorder by a MediaRecorder? Based on this stack-overflow question, I think you could try the following code based on Ben blog post: import android.media.MediaRecorder; import android.os.Environment; import java.io.File; import java.io.IOException; … Read more