Skip to content
Snippets Groups Projects
Commit 41ec0cf6 authored by cyberta's avatar cyberta
Browse files

don't save any photos of a scanned qr code in app's cache directory

parent 856575d4
No related branches found
No related tags found
1 merge request!334don't save any photos of a scanned qr code in app's cache directory
Pipeline #264839 passed with warnings
......@@ -115,7 +115,7 @@ public class ProviderSelectionFragment extends BaseSetupFragment implements Canc
binding.btnQrScanner.setOnClickListener(v -> {
ScanOptions options = new ScanOptions();
options.setBeepEnabled(false);
options.setBarcodeImageEnabled(true);
options.setBarcodeImageEnabled(false);
options.setOrientationLocked(false);
scannerActivityResultLauncher.launch(options);
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment