fix: Fix redeclaration build error on Android

This commit is contained in:
Marc Rousavy 2023-09-30 10:51:32 +02:00
parent 34f4038e05
commit 2430058cae

View File

@ -59,8 +59,6 @@ class CameraSessionCannotBeConfiguredError(cameraId: String, outputs: CameraOutp
CameraError("session", "cannot-create-session", "Failed to create a Camera Session for Camera $cameraId! Outputs: $outputs")
class CameraDisconnectedError(cameraId: String, error: CameraDeviceError) :
CameraError("session", "camera-has-been-disconnected", "The given Camera device (id: $cameraId) has been disconnected! Error: $error")
class FrameProcessorsUnavailableError(reason: String) :
CameraError("system", "frame-processors-unavailable", "Frame Processors are unavailable! Reason: $reason")
class VideoNotEnabledError :
CameraError("capture", "video-not-enabled", "Video capture is disabled! Pass `video={true}` to enable video recordings.")