Android Emulatorでnet::ERR_CLEARTEXT_NOT_PERMITTEDが出た時の対処法
WebViewでlocalhostを参照する実装をAndroid Emulatorで見る際、net::ERR_CLEARTEXT_NOT_PERMITTED
というエラーが表示された。
これはAndroid 9(API レベル 28)からTLS(Transport Layer Security)がデフォルトとなり、HTTPプロトコル通信許が可されなくなったことが原因。
Google Developers Japan: Android P で TLS のデフォルト化によるユーザー保護
対処法はいくつかあるが、今回はサンプルアプリということもあり、マニフェストファイルにHTTP通信を許可するようusesCleartextTraffic
の設定を追加することで回避した。
<application
...
android:usesCleartextTraffic="true"
...
>
</application>
厳密に対応する場合は、特定ドメインのみを許可する設定などが推奨されている。
<?xml version="1.0" encoding="utf-8"?>
<manifest ... >
<application android:networkSecurityConfig="@xml/network_security_config"
... >
...
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config>
<domain includeSubdomains="true">secure.example.com</domain>
<domain includeSubdomains="true">cdn.example.com</domain>
<trust-anchors>
<certificates src="@raw/trusted_roots"/>
</trust-anchors>
</domain-config>
</network-security-config>
Author And Source
この問題について(Android Emulatorでnet::ERR_CLEARTEXT_NOT_PERMITTEDが出た時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/unsoluble_sugar/items/90db09e2083ffc5a33fb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .