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 } 34