Advertisement
PasteyMash

Untitled

Mar 23rd, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
  2.             if (checkSelfPermission(Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) {
  3.                 ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.CAMERA}, 1);
  4.             }
  5.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement