Android 6.0 RuntimeException: Fail to connect to camera service

后端 未结 5 1776
慢半拍i
慢半拍i 2021-01-17 07:36

An error occurred with my app which ran in Nexus5 (Android6.0).

The error was

java.lang.RuntimeException: Fail to connect to camera service

5条回答
  •  离开以前
    2021-01-17 08:36

    This happens because, in Android 6.0 the permission model is different. You have to implement the new permission model which asks for the permission on run time. Even if you don't ask it, you can manually enable it in the phone's app setting, but that is not gona work when you publish your app in the play store. Here is an Article on How to get Run time permissions

    Also you can check Nick's answer here for getting multiple permissions

提交回复
热议问题