유니티로 ios로 export하고 xcode로 빌드할 때 발생하는 오류를 모아봤다.
오류파튀~
목차
1. bitcode 활성화 오류
You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target.
2. 페이스북 sdk 오류
duplicate symbol _OBJC_CLASS_$_FBSDKTypeUtility duplicate symbols for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation)
3. 빌드하고 실행 시 Uncaught exception
4. Undefined symbols for architecture x86_64: _sqlite3_closed
5. Undefined symbols for architecture x86_64: _deflate
1. bitcode 활성화 오류
You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target.
현재 xcode 빌드 옵션에서 bitcode가 켜져 있는데 특정 sdk에 bitcode 적용이 안되어있어서 그렇다.
나의 경우 GA가 비트 코드가 없는 버전인데 비트코드가 있는 sdk로 교체를 해주던가 빌드 옵션에서 꺼주면 된다.
위의 sdk에서 bitcode가 있는 버전을 받아서 적용하면 정상적으로 빌드가 된다.
또는
Build Settings > Build Options > Enable Bitcode > No
요렇게 해주면 된다.
일단 빌드가 급하다면 bitcode를 끄도록 하자. 결론만 말하자면 비트코드 꺼도 상관없다.
비트 코드에 대한 설명은 다음 글을 확인하도록 하자.
https://ajh322.tistory.com/203
불러오는 중입니다...
2. 페이스북 sdk 오류
duplicate symbol _OBJC_CLASS_$_FBSDKTypeUtility duplicate symbols for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation)
라이브러리가 겹쳐서 발생한다고 하는데 정확히 무슨 오류인지까지는 안 찾아봤고 해결하려면
Build Phases > Link Binary With Libraries 에서 FBSDKCoreKit.framework를 없애주면 잘 작동한다.
3. 빌드하고 실행 시 Uncaught exception
실행하면 gsCrashReporterUEHandler 에서 오류가 잡히는데 이 오류가 뜨면 빌드까지는 됐는데 앱 실행하고 나서 오류가 발생하는 것이다. 콘솔을 보면 GA 키값을 입력 안 했는데 이 오류가 뜨면 대부분 plist에 써드파티 sdk 키값을 입력하지 않아서 발생한다.
4. Undefined symbols for architecture x86_64: _sqlite3_closed
라이브러리 중에 sqlite와 관련된 라이브러리가 안 들어가 있어서 발생한다고 하는데 아직도 잘 모르겠는데 어느 날부터 이 오류가 안 생기기 시작했다.
Build Phases > Link Binary With Libraries > 추가
Add Other 클릭 > Cmd + Shift + G를 눌러서 경로 입력창 띄움.
/usr/lib 이동
lib 경로에서 libsqlite3.dylib 추가
라이브러리 추가해주고 빌드하면 된다.
5. Undefined symbols for architecture x86_64: _deflate
4번과 비슷한 오류다.
lib 경로 아래에서 libz.dylib를 추가해준다.
'Unity > 트러블슈팅' 카테고리의 다른 글
유니티 RuntimeNavMeshBuilder: Source mesh does not allow read access. This will work in playmode in the editor but not in player (0) | 2019.10.21 |
---|---|
유니티 권한 요청 화면 멈춤 Timeout while trying to pause the Unity Engine. (1) | 2019.09.08 |
유니티 IAP The name does not exist in the current context 오류 (0) | 2019.08.13 |
유니티 애드몹 오류 모음 (0) | 2019.08.01 |
유니티 빌드 오류 - Scope was not disposed! (0) | 2019.07.25 |