Android studio使用OKGO的POST请求访问http失败的解决方法

移动开发 作者: 2024-08-21 22:50:01
前几天在旧手机(版本是Android7)上调试一个app,用OKGO的post请求连接服务器登录一直很正常。今天旧手机不在身边,用自己的手机调试,就出现网络请求失败的问题,弹onError()里自己写
<?xml version="1.0" encoding="utf-8"?>
<!--Android9以上机型 https请求适配-->
<network-security-config>
    base-config cleartextTrafficPermitted="true" />
</>
android:networkSecurityConfig="@xml/network_security_config
application
        android:name=".MyApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher_round"
        android:label="@string/app_name"
        android:roundIcon
        android:supportsRtl
        android:theme="@style/AppTheme"
        android:networkSecurityConfig="@xml/network_security_config">
        activity =".LoginActivity">
            intent-filter>
                action ="android.intent.action.MAIN" />
                category ="android.intent.category.LAUNCHER" />
            activity=".HomeActivity"></application>
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_66338.html