package io.fotoapparat.hardware.v2.capabilities; /** * Provides info about the preview size. */ class PreviewSizeInfo { /** * Max preview width that is guaranteed by Camera2 API */ static final int MAX_PREVIEW_WIDTH = 1920; /** * Max preview height that is guaranteed by Camera2 API */ static final int MAX_PREVIEW_HEIGHT = 1080; }