wpadebug: Allow WebView to parse and load clear text (HTTP)
Recent Android version doesn't allow cleartext parsing by WebView by default: Error message: ERR_CLEARTEXT_NOT_PERMITTED. To resolve this wpadebug need to have following updated under application definition of AndroidManifest.xml - android:usesCleartextTraffic="true" Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
09448d94a7
commit
e17ef1e9cb
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<application android:label="wpadebug">
|
||||
<application android:label="wpadebug" android:usesCleartextTraffic="true">
|
||||
<activity android:name="w1.fi.wpadebug.MainActivity"
|
||||
android:label="wpadebug">
|
||||
<intent-filter>
|
||||
|
|
Loading…
Reference in a new issue