···88import {type MetricEvents} from '#/logger/metrics'
99import {isWeb} from '#/platform/detection'
1010import * as persisted from '#/state/persisted'
1111+import packageDotJson from '../../../package.json'
1112import {useSession} from '../../state/session'
1213import {timeout} from '../async/timeout'
1314import {useNonReactiveCallback} from '../hooks/useNonReactiveCallback'
···2526 // This is the place where we can add our own stuff.
2627 // Fields here have to be non-optional to be visible in the UI.
2728 platform: 'ios' | 'android' | 'web'
2929+ appVersion: string
2830 bundleIdentifier: string
2931 bundleDate: number
3032 refSrc: string
···210212 refSrc,
211213 refUrl,
212214 platform: Platform.OS as 'ios' | 'android' | 'web',
215215+ appVersion: packageDotJson.version,
213216 bundleIdentifier: BUNDLE_IDENTIFIER,
214217 bundleDate: BUNDLE_DATE,
215218 appLanguage: languagePrefs.appLanguage,