- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如标题所示,尽管在 android list 文件以及网络配置安全文件中添加了所有必要的更改,但 volley 仍会抛出“不允许明文 http 流量”的错误。我正在 android studio 中制作我的项目,希望得到一些帮助。我尝试过清理项目、重建项目并使缓存失效。没有任何效果。
list 文件:(无法显示包名称)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution"
xmlns:tools="http://schemas.android.com/tools"
package="">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
android:networkSecurityConfig="@xml/network_security_config"
tools:replace="android:networkSecurityConfig">
<activity android:name=".SplashScreen"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".VerifyOtp" />
<activity android:name=".MainActivity">
</activity>
</application>
<dist:module dist:instant="true" />
</manifest>
最佳答案
如果您的网址是“https://example.com ”,则只需添加 example.com 和您想要允许访问的其他网址,如下所示
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">example.com</domain>
<domain includeSubdomains="true">example1.com</domain>
</domain-config>
<base-config cleartextTrafficPermitted="false" />
</network-security-config>
关于java - 尽管添加了 android :usesCleartextTraffic and android:networkSecurityConfig,但仍不允许明文 HTTP 流量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57800975/
我已经搜索过这个问题,但无法解决该问题我在 android 8 中有互联网,但在 android 9 中没有任何连接 usesCleartextTraffic=true >> 未解决 NetworkS
我们从特定的 flavor 交付发布 apk 构建( QA ) 给我们的质量检查团队。 我想添加 networkSecurityConfig只有那个flavor . 为此,我需要将下一个配置添加到 l
注意:这是a followup question .我试图在 react native 应用程序的 android list 中允许 http 流量。 如解释here ,我创建了一个 xml 文件:
在我的应用程序中,我使用以下内容设置网络安全配置文件: 我在 list 中这样设置: 此外,我添加了一个第
正如我在这个 article 中发现的那样. 我想更新我的网络安全配置以允许来 self 的 android 模拟器的个人商店的根证书。但是当我这样做时,我不能再构建我的应用程序了。错误信息: Una
我正在尝试连接到这些地方中的任何一个并获取 JSON 数据:- https://content.guardianapis.com/search?q=debate&tag=politics/politi
正如标题所示,尽管在 android list 文件以及网络配置安全文件中添加了所有必要的更改,但 volley 仍会抛出“不允许明文 http 流量”的错误。我正在 android studio 中
我有一些关于 android 7.0.0 的问题。 我在我的应用程序中使用了 volley 库,它在 Android 7.0 之外运行良好 这是我的部分代码; String url_goster =
我正在使用下载管理器从 Internet 下载文件。在Android 6、8.1下下载成功,在Android 9.0上下载失败 DownloadManager.Request request = ne
将设备操作系统更新到 Android 9.0 时,之前此代码运行良好(小米 A2)。现在,Android Pie 9.0 上无法下载文件。 此外,它在奥利奥、牛轧糖、棉花糖中运行良好 这是代码 fra
我是一名优秀的程序员,十分优秀!