QRCodeScanner
QRCodeScanner copied to clipboard
Request Camera Permissions Internally
trafficstars
//TODO
Have to enable it manually in the app setting :(
@Keatooon you can request permission via
ActivityCompat.requestPermissions(activity,
new String[]{Manifest.permission.CAMERA},
PERMISSIONS_CAMERA);
There is no need to implement from Library, but by just stating how to request for permission manually inside README.md is already enough.