Update environment variable COLLECT_NETWORK_METRICS (#8505)

This commit is contained in:
Rahim Rahman 2025-01-22 07:55:00 -07:00 committed by GitHub
parent 25919131fc
commit 0a0e2a7898
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 7 additions and 1 deletions

View file

@ -6,6 +6,7 @@ AWS_FOLDER_NAME=mattermost-mobile-beta
AWS_REGION=us-east-1
BETA_BUILD=true
BUILD_FOR_RELEASE=true
COLLECT_NETWORK_METRICS=true
MAIN_APP_IDENTIFIER=com.mattermost.rnbeta
REPLACE_ASSETS=false
SENTRY_ENABLED=true

View file

@ -7,6 +7,7 @@ AWS_REGION=us-east-1
BETA_BUILD=true
BUILD_FOR_RELEASE=true
BUILD_PR=true
COLLECT_NETWORK_METRICS=true
MAIN_APP_IDENTIFIER=com.mattermost.rnbeta
REPLACE_ASSETS=false
SHOW_ONBOARDING=true

View file

@ -6,6 +6,7 @@ AWS_FOLDER_NAME=mattermost-mobile
AWS_REGION=us-east-1
BETA_BUILD=false
BUILD_FOR_RELEASE=true
COLLECT_NETWORK_METRICS=false
MAIN_APP_IDENTIFIER=com.mattermost.rn
REPLACE_ASSETS=true
SENTRY_ENABLED=true

View file

@ -6,6 +6,7 @@ AWS_FOLDER_NAME=mattermost-mobile-beta
AWS_REGION=us-east-1
BETA_BUILD=true
BUILD_FOR_RELEASE=true
COLLECT_NETWORK_METRICS=true
EXTENSION_APP_IDENTIFIER=com.mattermost.rnbeta.MattermostShare
IOS_APP_GROUP=group.com.mattermost.rnbeta
IOS_BUILD_EXPORT_METHOD=app-store

View file

@ -7,6 +7,7 @@ AWS_REGION=us-east-1
BETA_BUILD=true
BUILD_FOR_RELEASE=true
BUILD_PR=true
COLLECT_NETWORK_METRICS=true
EXTENSION_APP_IDENTIFIER=com.mattermost.rnbeta.MattermostShare
IOS_APP_GROUP=group.com.mattermost.rnbeta
IOS_BUILD_EXPORT_METHOD=ad-hoc

View file

@ -5,6 +5,7 @@ AWS_BUCKET_NAME=releases.mattermost.com
AWS_FOLDER_NAME=mattermost-mobile
AWS_REGION=us-east-1
BUILD_FOR_RELEASE=true
COLLECT_NETWORK_METRICS=false
EXTENSION_APP_IDENTIFIER=com.mattermost.rn.MattermostShare
IOS_APP_GROUP=group.com.mattermost
IOS_BUILD_EXPORT_METHOD=app-store

View file

@ -181,7 +181,7 @@ lane :configure do
json['ShowOnboarding'] = true
end
# Configure Show Onboarding
# Collect network request information with different request group (notifications, login, cold start, etc)
if ENV['COLLECT_NETWORK_METRICS'] == 'true'
json['CollectNetworkMetrics'] = true
end