Om Dev

Results 9 comments of Om Dev

> Is there any good solutions for preventing releasing when play in RecyclerView? I just found that the VideoView is released after item being scrolled up or down and unvisible...

"android.permission.RECORD_AUDIO" is already there,it crash for some of the devices not for all devices

yes we have taken permission at run time.

there are many crash reports on fabric,normally it working ,i have taken permission this way private void checkPermissionsAndStartVisualization() { if (ContextCompat.checkSelfPermission(this, Manifest.permission.RECORD_AUDIO) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.RECORD_AUDIO}, REQUEST_PERMISSION_RECORD_AUDIO); }...

it's already there ,onRequestPermissionResult we are again calling same method checkPermissionsAndStartVisualization().

what is logic behind that?we can take permission at any time. we are always calling initVisualizer() if permission is granted.

Hi @chris109b , any luck with this? I am also facing the same issue, I have already compiled espeak-ng using VS and the build is successful, but still, there are...