/* * Copyright (C) 2024 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.healthconnect.controller.shared object Constants { // Onboarding const val USER_ACTIVITY_TRACKER = "USER_ACTIVITY_TRACKER" const val ONBOARDING_SHOWN_PREF_KEY = "ONBOARDING_SHOWN_PREF_KEY" // Migration const val APP_UPDATE_NEEDED_BANNER_SEEN = "app_update_banner_seen" const val INTEGRATION_PAUSED_SEEN_KEY = "integration_paused_seen" const val APP_UPDATE_NEEDED_SEEN = "App Update Seen" const val MODULE_UPDATE_NEEDED_SEEN = "Module Update Seen" const val WHATS_NEW_DIALOG_SEEN = "Whats New Seen" const val MIGRATION_NOT_COMPLETE_DIALOG_SEEN = "Migration Not Complete Seen" // Connected apps const val EXTRA_APP_NAME = "app_name_extras" }