CATCHV Blog

[flutter] OSError (OS Error: Operation not permitted, errno = 1) 본문

Dev/flutter

[flutter] OSError (OS Error: Operation not permitted, errno = 1)

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

macOS에서 flutter 실행시 OSError (OS Error: Operation not permitted, errno = 1) 에러가 발생하는데

macOS의 권한이 부족해서 인터넷 사용시  발생하는 에러입니다.

 

macos/Runner/DebugProfile.entitlements
macos/Runner/Release.entitlements

파일에 권한을 추가해 주면 됩니다.

<dict>
	<key>com.apple.security.network.client</key>
	<true/>
</dict>

 

반응형
Comments