解决方案见官方文档: 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"/>