Open
Description
Describe the bug
Livekit SDK is not taking mic input on Galaxy A25 5G. Same build is working on other devices but not this specific device. There is no specific information in the logs that can point to any errors or issues.
Device Info:
- Device: Galaxy A25 5G
- OS: Android 14
- LiveKit SDK version: 2.10.0, 2.11.0
Additional context
Please let me know how can I generate logs in order to help diagnose this issue.
Current Livekit config is setup as follows:
LiveKit.create(
context,
options =
RoomOptions(
audioTrackCaptureDefaults = LocalAudioTrackOptions(),
videoTrackCaptureDefaults =
LocalVideoTrackOptions(position = CameraPosition.BACK),
),
overrides =
LiveKitOverrides(
audioOptions = AudioOptions(audioOutputType = AudioType.MediaAudioType())
),
)
Another note is that the issue is not present when the audioOptions are not overriden and Livekit is used in default mode.