How to get app version number
You can get the app version number by using the following code:
appSettings.getOption('app_version_name')
Example
import { appSettings } from '@appmaker-xyz/core';
const version = appSettings.getOption('app_version_name');
console.log(version);