-
xcode 11.3 베타버전에서 빌드시 Unknown argument type '__attribute 오류수상한 프로그래머/React Native 2020. 4. 17. 20:57반응형
xcode의 최신버전인 xcode 11.3 베타버전에서 React Native 빌드시
Unknown argument type '__attribute__' in method -[RCTAppStat 라는 오류가 터치만 하면
뜨는 증상이 발견되었다.
이런 오류가 발생되면 RCTModuleMethod.mm 파일로 가서 RCTParseUnused 라는 메소드를
찾은 다음 내용을 아래와 같이 변경하면 된다.
static BOOL RCTParseUnused(const char **input) { return RCTReadString(input, "__unused") || RCTReadString(input, "__attribute__((__unused__))") || //solve by add this line RCTReadString(input, "__attribute__((unused))"); }
오케이 해결 ㅎㅎ
반응형'수상한 프로그래머 > React Native' 카테고리의 다른 글
한눈에 보는 React Native 라이프 싸이클( Life Cycle) 설명 (0) 2020.04.17 안드로이드 에뮬레이터 adb 관련 명령어 모음 (0) 2020.04.17 IOS 팀 개발자 초대 방법 (0) 2020.04.13 xcode 인증서와 프로비저닝 프로파일을 이용한 프로젝트 팀 선택하기 Team ! (8) 2020.04.13 react-native-beacons-manager 사용시 DeviceEventEmitter Listener 해제하기 (0) 2020.02.19 댓글