IT/프로그래밍
[Flutter] Error (Xcode): Building for 'iOS-simulator', but linking in object file (/ios/Pods/MLImage/Frameworks/MLImage.framework/MLImage[arm64][2](GMLImage.o)) built for 'iOS'
ko dean
2023. 11. 30. 13:06
반응형
이전 포스팅에 이어서...
Error (Xcode): Building for 'iOS-simulator', but linking in object file (/Users/dean/Documents/dev/flutter/butler/ios/Pods/MLImage/Frameworks/MLImage.framework/MLImage[arm64][2](GMLImage.o)) built for 'iOS'
에러가 발생했다..
arm64라고 붙어있는거 보니 xcode에서 bulid setting을 바꿔주면 되겠구나 싶어서 바꿔보았다.
기존에는 이렇게 되어있는데
arm64로 다 바꿔주고 혹시 몰라서
podfile.lock과 pods 폴더를 삭제했다.
rm -rf podfile.lock
rm -rf pods
pod cache clean --all
그래도 혹시 몰라 pod cache도 날려주고
빌드를 다시 했더니 빌드가 되는 것을 확인 할수 있었다!
드디어 에뮬레이터에서 되었다..!!!!
반응형