我有一个可以在IOS和浏览器中正常运行的应用程序。但是我尝试在android上运行,并不断收到此错误。我见过其他类似的问题here,但是没有任何作用。我无法登录/执行任何HTTP请求。
config.xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.healthcare" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<platform name="android">
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:usesCleartextTraffic="true" />
</edit-config>
network_security_config.xml
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain>localhost</domain>
</domain-config>
</network-security-config>