因此,正如他的标题所读,尽管在android清单文件以及网络配置安全文件中添加了所有必要的更改,但volley却抛出了“不允许清除文本http流量”错误。我正在android studio中制作项目,希望能获得一些帮助。我试过清理项目,重建项目并使缓存无效。什么都没有。
清单文件:(无法显示软件包名称)
<?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>
答案 0 :(得分:0)
如果您的网址是“ https://example.com”,则只需添加example.com和您要允许访问的其他网址,如下所示
protected void BtnHandler_Click(object sender, EventArgs e)
{
// Do something
}