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 17 package android.adpf.atom.common; 18 19 public class ADPFAtomTestConstants { 20 public static final String INTENT_ACTION_KEY = "action"; 21 public static final String ACTION_CREATE_DEAD_TIDS_THEN_GO_BACKGROUND = 22 "action.create_dead_tids"; 23 public static final String ACTION_CREATE_REGULAR_HINT_SESSIONS = 24 "action.create_regular_hint_sessions"; 25 public static final String CONTENT_KEY_RESULT_TIDS = "result_tids"; 26 public static final String CONTENT_KEY_UID = "result_uid"; 27 public static final String CONTENT_COLUMN_KEY = "key"; 28 public static final String CONTENT_COLUMN_VALUE = "value"; 29 public static final String CONTENT_AUTHORITY = "android.adpf.atom.app"; 30 public static final String CONTENT_URI_STRING = "content://" + CONTENT_AUTHORITY + "/test_data"; 31 } 32