• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2024 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.android.healthconnect.controller.shared
17 
18 object Constants {
19     // Onboarding
20     const val USER_ACTIVITY_TRACKER = "USER_ACTIVITY_TRACKER"
21     const val ONBOARDING_SHOWN_PREF_KEY = "ONBOARDING_SHOWN_PREF_KEY"
22 
23     // Migration
24     const val APP_UPDATE_NEEDED_BANNER_SEEN = "app_update_banner_seen"
25     const val INTEGRATION_PAUSED_SEEN_KEY = "integration_paused_seen"
26     const val APP_UPDATE_NEEDED_SEEN = "App Update Seen"
27     const val MODULE_UPDATE_NEEDED_SEEN = "Module Update Seen"
28     const val WHATS_NEW_DIALOG_SEEN = "Whats New Seen"
29     const val MIGRATION_NOT_COMPLETE_DIALOG_SEEN = "Migration Not Complete Seen"
30 
31     // Connected apps
32     const val EXTRA_APP_NAME = "app_name_extras"
33     const val SHOW_MANAGE_APP_SECTION = "show_manage_app_section"
34 
35     // Onboarding banners
36     const val START_USING_HC_BANNER_SEEN = "start_using_hc_seen"
37     const val CONNECT_MORE_APPS_BANNER_SEEN = "connect_more_apps_seen"
38     const val SEE_MORE_COMPATIBLE_APPS_BANNER_SEEN = "see_more_apps_seen"
39 
40     // Lock screen banners
41     const val LOCK_SCREEN_BANNER_SEEN_FITNESS = "lock_screen_banner_seen_fitness"
42     const val LOCK_SCREEN_BANNER_SEEN_MEDICAL = "lock_screen_banner_seen_medical"
43 }
44