diff --git a/.env.example b/.env.example index b5578dab40..7368504233 100644 --- a/.env.example +++ b/.env.example @@ -4,7 +4,7 @@ EXPO_PUBLIC_ENV=development # This is the short commit hash that the current bundle was made from. EXPO_PUBLIC_BUNDLE_IDENTIFIER= -# Should be formatted YYMMDD so that it increases for each build. +# Should be formatted YYMMDDHH so that it increases for each build. EXPO_PUBLIC_BUNDLE_DATE=0 # The log level for the app's logger transports diff --git a/src/env/common.ts b/src/env/common.ts index 86a6cab04d..f252f84f09 100644 --- a/src/env/common.ts +++ b/src/env/common.ts @@ -30,9 +30,9 @@ export const BUNDLE_IDENTIFIER: string = process.env.EXPO_PUBLIC_BUNDLE_IDENTIFIER?.slice(0, 7) || 'dev' /** - * This will always be in the format of YYMMDD, so that it always increases for - * each build. This should only be used for StatSig reporting and shouldn't be - * used to identify a specific bundle. + * This will always be in the format of YYMMDDHH, so that it always increases + * for each build. This should only be used for StatSig reporting and shouldn't + * be used to identify a specific bundle. */ export const BUNDLE_DATE: number = IS_INTERNAL || !process.env.EXPO_PUBLIC_BUNDLE_DATE