앱이 인터넷을 사용하기 위해서는 별도의 permission을 추가해야 한다고 한다.
[프로젝트 path]\android\app\src\main\AndroidManifest.xml에
<uses-permission android:name="android.permission.INTERNET" />
를 추가한 후, 빌드를 다시 하고 디바이스에서 실행하면 인터넷 연결이 될 것이다.
<예시>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lolcard">
<uses-permission android:name="android.permission.INTERNET" /> //여기에 추가
<application
//생략
<참고 링크>
flutter build apk --release build the apk file but it give error after installing on Android
I have converted google website into Web app for android using webview_flutter: ^1.0.7 package when I run the code in my physical device by making it external emulator the app work perfectly but w...
stackoverflow.com