2015-12-07 15:00:24 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2015 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.launcher3.config;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Defines a set of flags used to control various launcher behaviors
|
|
|
|
|
*/
|
2017-07-24 01:02:38 -07:00
|
|
|
public final class FeatureFlags extends BaseFlags {
|
2017-03-06 16:56:39 -08:00
|
|
|
|
2018-02-16 19:18:08 +01:00
|
|
|
// Feature flag to enable moving the QSB on the 0th screen of the workspace.
|
2019-07-03 00:47:25 +07:00
|
|
|
public static final boolean QSB_ON_FIRST_SCREEN = false;
|
2018-06-10 09:44:32 +07:00
|
|
|
|
2018-12-02 07:22:33 +07:00
|
|
|
public static boolean REFLECTION_FORCE_OVERVIEW_MODE = true;
|
|
|
|
|
|
2018-10-12 14:14:16 -04:00
|
|
|
private FeatureFlags() {
|
|
|
|
|
// Prevent instantiation
|
2018-10-03 13:32:01 -04:00
|
|
|
}
|
2015-12-07 15:00:24 -08:00
|
|
|
}
|