在 AndroidManifest.xml 加入网络权限
<uses-permission android:name="android.permission.INTERNET"/>
在 application 中加入如下代码
android:requestLegacyExternalStorage="true"
android:networkSecurityConfig="@xml/netconfig"
将上述内容拷贝后 AndroidManifest.xml 整体效果如下效果如下
在 res 下 xml 文件夹内新建 netconfig.xml 文件
在 netconfig.xml 内粘贴如下代码文章来源:https://www.toymoban.com/news/detail-651013.html
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
获取网络权限完成!文章来源地址https://www.toymoban.com/news/detail-651013.html
到了这里,关于Android 获取网络权限的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!