1 /*
2  * Copyright (C) 2018 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 com.android.launcher3;
18 
19 public final class BuildConfig {
20     public static final String APPLICATION_ID = "com.android.launcher3";
21 
22     public static final boolean IS_STUDIO_BUILD = false;
23     /**
24      * Flag to state if the QSB is on the first screen and placed on the top,
25      * this can be overwritten in other launchers with a different value, if needed.
26      */
27     public static final boolean QSB_ON_FIRST_SCREEN = true;
28 
29     /**
30      * Flag to state if the widget on the top of the first screen should be shown.
31      */
32     public static final boolean WIDGET_ON_FIRST_SCREEN = false;
33 
34     /**
35      * Flag to control various developer centric features
36      */
37     public static final boolean IS_DEBUG_DEVICE = false;
38 
39     // Flag to control widgets support in Launcher
40     public static final boolean WIDGETS_ENABLED = true;
41     // Flag to control notification dots support in Launcher
42     public static final boolean NOTIFICATION_DOTS_ENABLED = true;
43 }
44