안녕하세요.
remonCast 생성하고, create 호출했는데 onInit 콜백 응답만 오고, onCreate 콜백 응답은 안오는데 (error도 안옴.) 어떤 점이 잘못된걸까요? 참고로, 콘솔에서 채널 생성이 되는 것은 확인했습니다.
코드는 아래 형식과 같습니다.
// 생성
remonCast = RemonCast()
// 콜백
remonCast?.onInit {
print("###### Init")
}
remonCast?.onCreate { channelId in
print("###### onCreate") // 채널 생성은 됐지만 호출이 안되고 있음.
}
remonCast?.localView = view
remonCast?.mirrorMode = false
let config = RemonConfig()
config.useExternalCapturer = true
config.serviceId = 서비스 아이디
config.key = 키
config.serviceToken = 토큰
remonCast?.create(name: roomName, channelId: roomName, config: config)