我构建了一个颤振应用程序。我使用 url_launcher 包来导航社交链接和其他外部浏览器链接。它在安卓模拟器上完美运行。但是当我构建 apk 并将其安装在手机上时,URL 没有启动。甚至网络图像也没有显示出来。
简单地说,我的意思是颤振应用程序根本没有互联网访问权限。我的问题是为什么相同的代码可以完美地在模拟器上运行而不能在真实设备上运行?
我还检查了android清单文件。也没有问题。这是android清单代码
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sri_lanka">
<!-- 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>
这是在真实手机上无法打开的图标按钮 [1]:https ://i.stack.imgur.com/TYTmU.png