Hello,
We're having a hard time debugging mobile apps on actual mobile phones. For example, we have an app that is using the image uploader, and on the computer simulator it works fine and can produce a base64 image but on Android or iOS (both tested), when we submit a variable we are storing the B64 string in, it's showing up as None.
Example:
var base64Data = await utils.getDataByObjectURL(imageInput1.files[0].uri)
b64.setValue(base64Data)
This sets our value for the uploaded image. Same exact code will have a valid Base64 value when uploaded from a desktop, but mobile will have a value of None. There's a URI link that can be printed when it takes the photo which shows a .jpg somewhere in the phones storage directory, but I can't debug the issue as there's no console on an actual mobile.