NuvioStreaming/src/utils/version.ts
2025-09-30 17:17:48 +05:30

10 lines
223 B
TypeScript

// Single source of truth for the app version displayed in Settings
// Update this when bumping app version
export const APP_VERSION = '1.2.2';
export function getDisplayedAppVersion(): string {
return APP_VERSION;
}