diff options
Diffstat (limited to 'src/lib/app-info.ts')
-rw-r--r-- | src/lib/app-info.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/app-info.ts b/src/lib/app-info.ts index 729881aca..4da70d75d 100644 --- a/src/lib/app-info.ts +++ b/src/lib/app-info.ts @@ -3,6 +3,7 @@ import {nativeApplicationVersion, nativeBuildVersion} from 'expo-application' export const BUILD_ENV = process.env.EXPO_PUBLIC_ENV export const IS_DEV = process.env.EXPO_PUBLIC_ENV === 'development' export const IS_TESTFLIGHT = process.env.EXPO_PUBLIC_ENV === 'testflight' +export const IS_INTERNAL = IS_DEV || IS_TESTFLIGHT // This is the commit hash that the current bundle was made from. The user can see the commit hash in the app's settings // along with the other version info. Useful for debugging/reporting. |