Flutter 发布APK时,release版本和debug版本的默认权限不同

Flutter 发布APK时,release版本和debug版本的默认权限不同 

@author ixenos

 

在调试模式下,默认情况下启用服务扩展和多个权限(在flutter中)

当您处于发布模式时,您必须手动在androidmanifest.xml中添加Internet权限。(就像您在本机开发中添加它一样)

导航到android-> app-> src-> main-> AndroidManifest.xml并在应用程序范围之外添加此行。

 -permission android:name="android.permission.INTERNET" />

转载于:https://www.cnblogs.com/ixenos/p/10968874.html

你可能感兴趣的:(Flutter 发布APK时,release版本和debug版本的默认权限不同)