mauclores
mauclores
Hello, Could you change the intinialized CustomFontR from 255 to 0? (And try to view the picker without pressing the button) Thank you.
Hello, Thank you for the explanation. I have confirmed that your solution fixed the issue. Thank you.
See if this can help: https://github.com/jhansireddy/AndroidScannerDemo/issues/112#issuecomment-626151977
See if this can help: https://github.com/jhansireddy/AndroidScannerDemo/issues/112#issuecomment-626151977
Was this solved?
In my case this happens only when the device is running Android 10 and the targetSdkVersion in manifest file is 29. The issue is related to external storage directory accessibility...
Hello. Sorry I could not check code right now but could you try the following? 1. In PickImageFragment.java, create a variable imagePath. `private String imagePath = "";` 2. Under init(),...
Hello ajinkya976, Could you check any of the solutions found in this link? https://stackoverflow.com/questions/10831562/camera-always-returns-resultcode-as-0
It means you are not receiving the correct result code, Activity.RESULT_OK after image capture. This usually happens if permissions required are not granted. Aside from camera, have you requested for...
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? ``` if (checkSelfPermission(Manifest.permission.CAMERA) != PackageManager.PERMISSION_GRANTED || checkSelfPermission(Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) { requestPermissions(new String[]{Manifest.permission.CAMERA,...