Skip to content

App crashing when the permission is already granted #4

Description

@fazy95

The code actually crashes when the permission of accessing the camera is already given. The following functions solved that issue for me. Please make a check before requesting a camera in the onCreate function.
private boolean isCameraPermissionGranted(){
int selfPermission= ContextCompat.checkSelfPermission(getBaseContext(), Manifest.permission.CAMERA);
return selfPermission==PackageManager.PERMISSION_GRANTED;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions