Results 5 comments of vivek vekariya

Hi Nick, I also faced the same issues on Android 7.1 device where I am able to configure the hotspot but the client is not able to connect. It just...

you have to make the following changes in the library. It worked for me. 1. build.gradle of lib https://github.com/adrielcafe/AndroidAudioRecorder/blob/master/lib/build.gradle change version to 1.1.5 of om-recorder library compile 'com.kailashdabhi:om-recorder:1.1.5' 2. Utils.java...

Go to Camera1Manager.java file. -> closeCamera(). in this method, before `camera.release()`. put below two lines of code. ``` camera.stopPreview(); camera.setPreviewCallback(null); camera.release(); ``` This solved my problem.

I am also getting this crash in huge amount. What should be done to avoid this crash?

For Android 6.0 onwards you need to have storage permission before using this feature. So, I think this crash is related to permission not granted to you for storage. First,...