Hi all,
I’m facing an strange behaviour on my app. I’m updating to android 13, but when I add the Camera permission on the manifest all my ajax requests stops working.
This is the secuence:
Engine 11.0.0, targetSdkVersion 32 - Ajax works
Engine 12.0.0, targetSdkVersion 33 without camera permission - Ajax works, camera Error 20
Engine 12.0.0, targetSdkVersion 33 with:
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/uses-permission">
<uses-permission android:name="android.permission.CAMERA" android:maxSdkVersion="33" />
</edit-config>
Ajax rerquests stops working.
I don’t know where are the issue, the ajax error response:
readyState=0, status=0, statusText=error
Thanks