We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Livekit init failled in my Project just in iOS13,Other systems work good. My init method is @objc func connectSync(url: String, token: String, completion: @escaping (NSError?) -> Void) { Task { do { try await room?.connect(url: url, token: token) try await room?.localParticipant.setCamera(enabled: false) try await room?.localParticipant.setMicrophone(enabled: true) completion(nil) } catch { completion(error as NSError) } } } And my log in iOS13 is 2024-12-06T11:04:21+0800 info LiveKitSDK : [LiveKit] LocalParticipant._publish(track:options:) [publish] LocalAudioTrack(sid: nil, name: microphone, source: Source) options: nil... 2024-12-06T11:04:21+0800 error LiveKitSDK : [LiveKit] Room.requirePublisher() Publisher is nil 2024-12-06 11:04:24.327481+0800 Waiting for yours reply,thanks team.
The text was updated successfully, but these errors were encountered:
hiroshihorie
No branches or pull requests
Livekit init failled in my Project just in iOS13,Other systems work good.
My init method is
@objc func connectSync(url: String, token: String, completion: @escaping (NSError?) -> Void) {
Task {
do {
try await room?.connect(url: url, token: token)
try await room?.localParticipant.setCamera(enabled: false)
try await room?.localParticipant.setMicrophone(enabled: true)
completion(nil)
} catch {
completion(error as NSError)
}
}
}
And my log in iOS13 is
2024-12-06T11:04:21+0800 info LiveKitSDK : [LiveKit] LocalParticipant._publish(track:options:) [publish] LocalAudioTrack(sid: nil, name: microphone, source: Source) options: nil...
2024-12-06T11:04:21+0800 error LiveKitSDK : [LiveKit] Room.requirePublisher() Publisher is nil
2024-12-06 11:04:24.327481+0800
Waiting for yours reply,thanks team.
The text was updated successfully, but these errors were encountered: