Android-PWA-Wrapper icon indicating copy to clipboard operation
Android-PWA-Wrapper copied to clipboard

Cannot open non secure URL

Open ankitgupta29 opened this issue 5 years ago • 1 comments

Hi,

Google webapp doesn't allow to open non secure URL.

I tried creating webapp with this repo and I am also not able to open my URL and it consistently shows me as offline.

Does this repo supports to open non-secure URL and if yes any config I need to make.

Appreciate your response.

ankitgupta29 avatar May 11 '20 06:05 ankitgupta29

Add to AndroidManifest.xml:

    <application>
        android:usesCleartextTraffic="true"
        ...
    </application>

brayStorm avatar Feb 09 '23 18:02 brayStorm