出现此问题的机型:小米 8,android系统版本为:9。
应用为免费小说
下载地址为 安卓免费小说点我下载
解决方案见官方文档:https://developer.android.google.cn/about/versions/pie/android-9.0-changes-28
Apache HTTP 客户端弃用
在 Android 6.0 中,我们取消了对 Apache HTTP 客户端的支持。 从 Android 9 开始,默认情况下该内容库已从 bootclasspath 中移除且不可用于应用。
要继续使用 Apache HTTP 客户端,以 Android 9 及更高版本为目标的应用可以向其 AndroidManifest.xml的application节点下 添加以下内容:
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<application
android:name=".MyApp"
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">
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
<activity
android:name=".DisplayActivity"
android:configChanges="screenSize|orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
并在
application的节点中
添加
android:usesCleartextTraffic="true"
<application
android:name=".ReaderApplication"
android:allowBackup="true"
android:icon="@mipmap/icon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme.NoActionBar"
android:usesCleartextTraffic="true"
>
官方文档
https://developer.android.google.cn/about/versions/pie/android-9.0-changes-28
标签:google,HTTP,cn,SchemeRegistry,apache,http,android,Android,客户端 From: https://blog.51cto.com/u_14523369/6154896