[안드로이드 스튜디오/Error] camera.open() fail to connect to camera service
Camera.opne() Error: 해결 참고: https://developer.android.com/training/permissions/requesting.html (Beginning in Android 6.0 (API level 23), users grant permissions to apps while the app is running, not when they install the app.) 안드로이드 6.0 버전(marshmallow, API level 23)부터 앱이 필요한 권한을 얻는 방법이 달라졌다. 앱을 설치할 때 권한을 설정하는 것이었지만, 6.0 버전부터는 앱이 실행중일 때에 그 때마다 필요한 권한을 사용자에게 요청한다. 때문에, runtime에 권한을 요청하도록 구현해주어야 문제..