iOS Question iOS Camera from WebView

Nicolás Cieri

Active Member
Licensed User
Hello,

In my app, I am requesting the permission to the camera from a web.

The app does ask me for permission to allow the camera, but once I say yes, it does nothing.

If I test the web directly in the browser it works.

Something inside the B4i is missing for me.


For B4a, i fixed it with this lines...
public void onPermissionRequest(PermissionRequest request) {
request.grant(request.getResources());
}


But I need it in B4i

Some idea?

Thanks
 
Top