CATCHV Blog

[flutter] OS Error: No address associated with hostname, errno = 7 본문

Dev/flutter

[flutter] OS Error: No address associated with hostname, errno = 7

catchv 2022. 12. 3. 01:20
반응형

flutter로 android 컴파일시 OS Error: No address associated with hostname, errno = 7 에러가 발생하는 경우가 있습니다.

Internet 관련 권한 설정이 안되서 발생하는 문제로

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.coffeeapp">
<uses-permission android:name="android.permission.INTERNET"/>
<application
반응형
Comments