美文网首页
Flutter release模式打包网络请求解决方案

Flutter release模式打包网络请求解决方案

作者: 刘铁崧 | 来源:发表于2021-01-16 00:56 被阅读0次

主要因权限问题引起,配置权限: <uses-permission android:name="android.permission.INTERNET"/>

指定文件路径下查看文件:
debug模式:
android/app/src/debug/AndroidManifest.xml
release模式需要配置:
android/app/src/profile/AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.cystudio.cayj_cystudio">
    <!-- Flutter needs it to communicate with the running application
         to allow setting breakpoints, to provide hot reload, etc.
    -->
    <uses-permission android:name="android.permission.INTERNET"/>
</manifest>

相关文章

网友评论

      本文标题:Flutter release模式打包网络请求解决方案

      本文链接:https://www.haomeiwen.com/subject/dibgaktx.html