Kakao i Connect Live 커뮤니티

Xcode 11.3.1, RemoteMonster 2.7.0 문의

Xcode 11.3.1, RemoteMonster 2.7.0 버전을 사용하고있습니다.
빌드시 Swift Compiler Error가 나오는데요
Unknown attribute ‘…’ 에러가 많이 나와서 확인 중에 RemonConferenceCallbacks, RemonConference 등 RemoteMonster 관련 용어도 포함되 있어서 문의드립니다.

안녕하세요.
2.7 버전부터는 sdk 프레임워크가 xcframework로 배포되며, xcode 11.4 로 빌드되어 있습니다.
11.3.1 의 경우 스위프트 컴파일러가 달라 생기는 문제로 보이며,
xcode 의 업데이트가 필요해 보입니다.

xcode 11.3.x 의 경우 2.6.18 버전을 사용하시면 되며, 향후 xcode 업데이트시에
2.7 이상 버전을 적용하셨으면 합니다.

pod ‘RemoteMonster’, ‘~> 2.6.18’ 수정 후 Swift Compiler Error는 사라졌으나 아래와 같은 에러가 나옵니다.
Module compiled with Swift 5.2 cannot be imported by the Swift 5.1.3 compiler

pod install시

Installing Remon-WebRTC-iOS (1.78.2)
Installing RemoteMonster (2.6.19)
Installing SwiftProtobuf (1.7.0)
Generating Pods project
Integrating client project

위와 같이 2.6.19버전으로 설치가 되는데 맞는건가요?

안녕하세요.
2.6.19 버전은 기존 2.6.18 사용자가 xcode 11.4를 사용하기 위한 버전입니다.
pod 버전을 최종 버전이 선택되게 하지 마시고 특정 버전으로 고정하시면 됩니다.

// pod ‘RemoteMonster’, ‘~> 2.6.18’
pod ‘RemoteMonster’, ‘2.6.18’

해결되었습니다~ 감사합니다^^