Summary: Built-in barcode scanning fails on Android due to camera permission handling changes in Android 14.
Hey folks — ran into this one last week and figured I'd share what we found. If you're using Android devices for inventory scanning and the barcode reader suddenly stopped working, it's probably not your hardware.
Symptoms
- Tap the barcode icon in the inventory screen, nothing happens
- Or: camera view opens but won't actually scan — just sits there
- Works fine on iOS, or worked fine on the same Android device before recent update
What we confirmed
Android 14 changed how camera permissions work for WebView and hybrid apps. FieldPulse's scanner uses the device's camera feed, and if the permission prompt got dismissed or set to "Ask every time," the app doesn't handle the retry gracefully. It just... doesn't scan.
The fix that worked for us
Pro tip: Don't just check if Camera is allowed — check if it's set to "Allow all the time" or at least "Allow only while using the app." The "Ask every time" setting breaks the continuous scanning mode.
- Long-press the FieldPulse app icon → App info
- Tap Permissions → Camera
- Change from "Ask every time" to Allow only while using the app
- Force-close FieldPulse and reopen
If that doesn't do it, also check Nearby devices permission — some Android builds bunded Bluetooth scanner support with that permission group, and blocking it can confuse the app about which scanner to use.
What we tried that didn't help
Clearing cache, reinstalling, rebooting the phone — none of that matters if the permission model itself is the problem. Save yourself the time.
We're seeing this on Samsung Galaxy XCover 6 and some Zebra devices running Android 14. Haven't hit it on Android 13 or lower yet, but your mileage may vary depending on when your manufacturer pushed the permission changes.
If you're using a dedicated Bluetooth scanner instead of the camera, that's a different flow entirely — this guide is specifically for the built-in camera scanner.