forked from
jollywhoppers.com/witchsky.app
Bluesky app fork with some witchin' additions 馃挮
1import {BUNDLE_IDENTIFIER, RELEASE_VERSION} from '#/env/common'
2
3export * from '#/env/common'
4
5/**
6 * The semver version of the app, specified in our `package.json`.file. On
7 * iOs/Android, the native build version is appended to the semver version, so
8 * that it can be used to identify a specific build.
9 */
10export const APP_VERSION = RELEASE_VERSION
11
12/**
13 * The short commit hash and environment of the current bundle.
14 */
15export const APP_METADATA = `${BUNDLE_IDENTIFIER.slice(0, 7)} (${__DEV__ ? 'dev' : 'prod'})`