Gets the formatted application version with a 'v' prefix.

const formatted = getFormattedAppVersion(); // 'v1.0.0'
export const getFormattedAppVersion = (): string => {
return `v${getAppVersion()}`;
};