Gets the formatted application version with a 'v' prefix.
export const getFormattedAppVersion = (): string => { return `v${getAppVersion()}`;}; Copy
export const getFormattedAppVersion = (): string => { return `v${getAppVersion()}`;};
The formatted version string (e.g., 'v1.0.0').
Gets the formatted application version with a 'v' prefix.
Source