Ajinkya
Ajinkya
i tried giving external storage permission also but still same thing is happening. i have updated permission code above. i checked in app setting and it is showing camera and...
> Could you update from this: > > ``` > if (checkSelfPermission(Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED) { > requestPermissions(new String[]{Manifest.permission.CAMERA}, MY_CAMERA_PERMISSION_CODE); > } > ``` > > To this? > > ```...
i think i have to put here **CAMERA_REQUEST** `if (requestCode == CAMERA_REQUEST && resultCode == Activity.RESULT_OK)` if i am putting CAMERA_REQUEST then it is going in if condition but saying...