본문 바로가기

[플러터(flutter) 오류 해결] Class AMSupportURLConnectionDelegate is implemented 오류 해결법

ironwhale 2022. 1. 1.

플러터 iOS 빌드시 아래와 같은 오류가 발생하여 해결한 방법을 소개 하겠습니다.

Class AMSupportURLConnectionDelegate is implemented in both /usr/lib/libauthinstall.dylib (0x1e6ff2b90) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x103e242c8). One of the two will be used. Which one is undefined.

Class AMSupportURLSession is implemented in both /usr/lib/libauthinstall.dylib (0x1e6ff2be0) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x103e24318). One of the two will be used. Which one is undefined.
** BUILD FAILED **Xcode's output:


일반적인 해결 방법

flutter clean을 해봐라
xcode에서 설정을 바꿔보아라 등등 있었지만 모두 해결되지 않았습니다.


그냥 재설치가 답!!

xcode와 flutter 재설치하니 정상적으로 오류 없이 iOS로 빌드가 되었습니다.

댓글