Hello everyone,
I'm currently facing a problem that I just can't seem to solve.
I have an entity in my CRM where I need to take “before” and “after” photos.
The “before” photos are multiple attachments, while the “after” photo is a single image.
With a newer version of Android (Android 16), my phone only offers me the option to select photos—not the camera.
This wasn’t a problem with an older Android version (Android 10).
For the multiple attachments, I was able to solve this with the following:
“accept”: [
“image/*”,
“android/allowCamera”
],
Unfortunately, this doesn’t work for single images.
I’ve also tried this:
“capture”: “environment”,
Does anyone have any ideas on how I can solve this?
I'm currently facing a problem that I just can't seem to solve.
I have an entity in my CRM where I need to take “before” and “after” photos.
The “before” photos are multiple attachments, while the “after” photo is a single image.
With a newer version of Android (Android 16), my phone only offers me the option to select photos—not the camera.
This wasn’t a problem with an older Android version (Android 10).
For the multiple attachments, I was able to solve this with the following:
“accept”: [
“image/*”,
“android/allowCamera”
],
Unfortunately, this doesn’t work for single images.
I’ve also tried this:
“capture”: “environment”,
Does anyone have any ideas on how I can solve this?

Comment