fix: more settings

This commit is contained in:
Fredrik Burmester
2024-08-16 18:50:34 +02:00
parent a7533bbee0
commit 2c0df550f6
2 changed files with 74 additions and 1 deletions

View File

@@ -7,6 +7,8 @@ type Settings = {
forceLandscapeInVideoPlayer?: boolean;
openFullScreenVideoPlayerByDefault?: boolean;
usePopularPlugin?: boolean;
deviceProfile?: "Expo" | "Native" | "Old";
forceDirectPlay?: boolean;
};
/**
@@ -27,6 +29,8 @@ const loadSettings = async (): Promise<Settings> => {
forceLandscapeInVideoPlayer: false,
openFullScreenVideoPlayerByDefault: false,
usePopularPlugin: false,
deviceProfile: "Expo",
forceDirectPlay: false,
};
};