Android Audiorecord Fails To Initialize
I've been having an issue with using AudioRecord for Android. I've read as much as I can find online about it, but I cannot seem to get a good initialization. I have tried the Andr
Solution 1:
I think he means you need the RECORD_AUDIO permission in the manifest:
<uses-permissionandroid:name="android.permission.RECORD_AUDIO" />
That worked for me.
Post a Comment for "Android Audiorecord Fails To Initialize"