'Android WebView App give permission on Http camera access

I have a website that runs in HTTP. It also has a QR Scanner that accesses the camera. On the browser, I just need to enable

 <chrome://flags/#unsafely-treat-insecure-origin-as-secure> 

to access the camera. Is there a way in Android studio webView to enable this?



Solution 1:[1]

Yes, APNS token for iOS is same as default token, you can get it by using,

    FirebaseMessaging.instance.getToken().then((token) {
      print('This is Token: ' '${token}');
    });

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 VaasFPS