Skip to main content
Version: Next

Known Issues - Flutter

Issue: Camera Not Working with MultiStream (v1.3.1)​

When multiStream is set to true, the camera functionality will not work. By default, multiStream is enabled.

Solution​

  • Please pass multiStream: false in createRoom() method, your camera works as expected.
_room = VideoSDK.createRoom(
roomId: widget.meetingId,
token: widget.token,
displayName: "John Doe",
micEnabled: micEnabled,
camEnabled: camEnabled,
multiStream: false, // Disable multiStream to fix camera issue
defaultCameraIndex: kIsWeb ? 0 : 1
);

This page will let you updated with Flutter SDK known issues with better solution.

Issue : iOS: webrtc/webrtc.h file not found.​

Solution​

Add below script to end of pod file.

post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |build_configuration|
build_configuration.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64 i386'
end
end
end

Got a Question? Ask us on discord