FirebaseUI의 Xcode에서 ARC Semantic Issue 구축 실패 시 처리 방법
768 단어 XcodeFirebaseUItech
문제.
FirebaseUI를 포함하는 구문이 실패했습니다.오류 메시지는 다음과 같습니다.
/MyProject/ios/Pods/FirebaseUI/Auth/FirebaseAuthUI/FUIAuth.m:341:14: No visible @interface for 'FIRAuth' declares the selector 'useEmulatorWithHost:port:'
이것은 GiitHub에서도 보고되었다.해결책
이 문제는 v10입니다.0.2 수정 완료.
따라서
Podfile
에서 10.0.2의 FirebaseUI를 지정하면 됩니다.예제
pod 'FirebaseUI/Auth', '>= 10.0.2'
pod 'FirebaseUI/Google', '>= 10.0.2'
Reference
이 문제에 관하여(FirebaseUI의 Xcode에서 ARC Semantic Issue 구축 실패 시 처리 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/hideyuki/articles/8cced83fe92ab3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)