1 /* 2 * Copyright (C) 2023 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.adservices.tests.ui.libs; 17 18 public class UiConstants { 19 20 public static final String SIM_REGION = "simRegion"; 21 22 public static final boolean ENTRY_POINT_ENABLED = true; 23 24 public static final boolean ENTRY_POINT_DISABLED = false; 25 26 public static final boolean AD_ID_ENABLED = true; /* non-zeroed out AdId */ 27 28 public static final boolean AD_ID_DISABLED = false; /* zeroed out AdId */ 29 30 public static final int LAUNCH_TIMEOUT_MS = 8000; /* wait time for UI elements to launch */ 31 32 public static final int SCROLL_TIMEOUT = 500; 33 34 public static final int PRIMITIVE_UI_OBJECTS_LAUNCH_TIMEOUT_MS = 1000; 35 public static final String SYSTEM_UI_NAME = "com.android.systemui"; 36 public static final String NOTIFICATION_SCROLLER = "notification_stack_scroller"; 37 38 public static final String SYSTEM_UI_RESOURCE_ID = 39 "com.android.systemui:id/notification_stack_scroller"; 40 41 public enum UX { 42 GA_UX, 43 BETA_UX, 44 U18_UX, 45 RVC_UX, 46 } 47 } 48