2018-09-05 09:57:59 -07:00
|
|
|
// Copyright (C) 2018 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.
|
|
|
|
|
|
2021-02-12 17:08:17 -08:00
|
|
|
package {
|
2022-01-27 22:04:48 -08:00
|
|
|
// See: http://go/android-license-faq
|
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
2021-02-12 17:08:17 -08:00
|
|
|
}
|
|
|
|
|
|
2024-03-22 13:52:19 -07:00
|
|
|
min_launcher3_sdk_version = "30"
|
2021-05-20 10:43:23 -07:00
|
|
|
|
2022-07-12 15:45:10 +00:00
|
|
|
// Common source files used to build launcher (java and kotlin)
|
|
|
|
|
// All sources are split so they can be reused in many other libraries/apps in other folders
|
2024-03-25 11:53:17 -07:00
|
|
|
|
|
|
|
|
// Main Launcher source, excluding the build config
|
2022-07-12 15:45:10 +00:00
|
|
|
filegroup {
|
|
|
|
|
name: "launcher-src",
|
2023-12-20 11:57:04 -08:00
|
|
|
srcs: [
|
|
|
|
|
"src/**/*.java",
|
|
|
|
|
"src/**/*.kt",
|
|
|
|
|
],
|
2022-07-12 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
// Source code for quickstep build, on top of launcher-src
|
2022-07-12 15:45:10 +00:00
|
|
|
filegroup {
|
|
|
|
|
name: "launcher-quickstep-src",
|
2023-12-20 11:57:04 -08:00
|
|
|
srcs: [
|
|
|
|
|
"quickstep/src/**/*.java",
|
|
|
|
|
"quickstep/src/**/*.kt",
|
|
|
|
|
],
|
2022-07-12 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
// Alternate source when quickstep is not included
|
2022-07-12 15:45:10 +00:00
|
|
|
filegroup {
|
2024-03-25 11:53:17 -07:00
|
|
|
name: "launcher-src_no_quickstep",
|
2023-12-20 11:57:04 -08:00
|
|
|
srcs: [
|
2024-03-25 11:53:17 -07:00
|
|
|
"src_no_quickstep/**/*.java",
|
|
|
|
|
"src_no_quickstep/**/*.kt",
|
2023-12-20 11:57:04 -08:00
|
|
|
],
|
2022-07-12 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
// Default build config for Launcher3
|
2022-07-12 15:45:10 +00:00
|
|
|
filegroup {
|
2024-03-25 11:53:17 -07:00
|
|
|
name: "launcher-build-config",
|
2023-12-20 11:57:04 -08:00
|
|
|
srcs: [
|
2024-03-25 11:53:17 -07:00
|
|
|
"src_build_config/**/*.java",
|
2023-12-20 11:57:04 -08:00
|
|
|
],
|
2022-07-12 15:45:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Proguard files for Launcher3
|
|
|
|
|
filegroup {
|
|
|
|
|
name: "launcher-proguard-rules",
|
|
|
|
|
srcs: ["proguard.flags"],
|
2021-02-12 17:08:17 -08:00
|
|
|
}
|
|
|
|
|
|
2019-03-07 14:59:30 -08:00
|
|
|
android_library {
|
2018-09-05 09:57:59 -07:00
|
|
|
name: "launcher-aosp-tapl",
|
2021-08-26 10:37:17 -07:00
|
|
|
libs: [
|
|
|
|
|
"framework-statsd",
|
|
|
|
|
],
|
2018-09-05 09:57:59 -07:00
|
|
|
static_libs: [
|
|
|
|
|
"androidx.annotation_annotation",
|
2018-10-23 21:17:58 -07:00
|
|
|
"androidx.test.runner",
|
|
|
|
|
"androidx.test.rules",
|
2018-09-05 09:57:59 -07:00
|
|
|
"androidx.test.uiautomator_uiautomator",
|
2020-08-04 10:45:53 -07:00
|
|
|
"androidx.preference_preference",
|
2018-09-05 09:57:59 -07:00
|
|
|
"SystemUISharedLib",
|
2024-04-02 15:38:57 -07:00
|
|
|
"//frameworks/libs/systemui:animationlib",
|
2023-01-24 15:41:10 +00:00
|
|
|
"launcher-testing-shared",
|
2018-09-05 09:57:59 -07:00
|
|
|
],
|
|
|
|
|
srcs: [
|
|
|
|
|
"tests/tapl/**/*.java",
|
2024-03-04 09:49:39 +00:00
|
|
|
"tests/tapl/**/*.kt",
|
2018-09-05 09:57:59 -07:00
|
|
|
],
|
2023-12-20 11:57:04 -08:00
|
|
|
resource_dirs: [],
|
2019-03-07 14:59:30 -08:00
|
|
|
manifest: "tests/tapl/AndroidManifest.xml",
|
2018-09-05 09:57:59 -07:00
|
|
|
platform_apis: true,
|
|
|
|
|
}
|
2019-11-13 17:49:35 -08:00
|
|
|
|
|
|
|
|
java_library_static {
|
2020-02-04 18:56:40 -08:00
|
|
|
name: "launcher_log_protos_lite",
|
2019-11-13 17:49:35 -08:00
|
|
|
srcs: [
|
|
|
|
|
"protos/*.proto",
|
2021-01-27 14:45:58 -08:00
|
|
|
"protos_overrides/*.proto",
|
2019-11-13 17:49:35 -08:00
|
|
|
],
|
|
|
|
|
sdk_version: "current",
|
|
|
|
|
proto: {
|
|
|
|
|
type: "lite",
|
2023-12-20 11:57:04 -08:00
|
|
|
local_include_dirs: [
|
2019-11-13 17:49:35 -08:00
|
|
|
"protos",
|
2021-01-27 14:45:58 -08:00
|
|
|
"protos_overrides",
|
2019-11-13 17:49:35 -08:00
|
|
|
],
|
|
|
|
|
},
|
2020-02-04 18:56:40 -08:00
|
|
|
static_libs: ["libprotobuf-java-lite"],
|
2019-11-13 17:49:35 -08:00
|
|
|
}
|
2020-02-21 14:52:25 -08:00
|
|
|
|
2021-01-27 14:45:58 -08:00
|
|
|
java_library_static {
|
|
|
|
|
name: "launcher_quickstep_log_protos_lite",
|
|
|
|
|
srcs: [
|
|
|
|
|
"quickstep/protos_overrides/*.proto",
|
|
|
|
|
],
|
|
|
|
|
sdk_version: "current",
|
|
|
|
|
proto: {
|
|
|
|
|
type: "lite",
|
2023-12-20 11:57:04 -08:00
|
|
|
local_include_dirs: [
|
2021-01-27 14:45:58 -08:00
|
|
|
"quickstep/protos_overrides",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
static_libs: [
|
2023-12-20 11:57:04 -08:00
|
|
|
"libprotobuf-java-lite",
|
|
|
|
|
"launcher_log_protos_lite",
|
|
|
|
|
],
|
2021-01-27 14:45:58 -08:00
|
|
|
}
|
|
|
|
|
|
2020-02-21 14:52:25 -08:00
|
|
|
java_library {
|
|
|
|
|
name: "LauncherPluginLib",
|
|
|
|
|
|
|
|
|
|
static_libs: ["PluginCoreLib"],
|
|
|
|
|
|
|
|
|
|
srcs: ["src_plugins/**/*.java"],
|
|
|
|
|
|
|
|
|
|
sdk_version: "current",
|
2021-05-20 10:43:23 -07:00
|
|
|
min_sdk_version: min_launcher3_sdk_version,
|
2020-02-21 14:52:25 -08:00
|
|
|
}
|
2021-02-25 00:58:05 -08:00
|
|
|
|
2021-03-12 16:00:40 -08:00
|
|
|
// Library with all the dependencies for building Launcher3
|
2021-02-25 00:58:05 -08:00
|
|
|
android_library {
|
2021-03-12 16:00:40 -08:00
|
|
|
name: "Launcher3ResLib",
|
2023-12-20 11:57:04 -08:00
|
|
|
srcs: [],
|
2021-03-12 16:00:40 -08:00
|
|
|
resource_dirs: ["res"],
|
2021-02-25 00:58:05 -08:00
|
|
|
static_libs: [
|
2021-03-12 16:00:40 -08:00
|
|
|
"LauncherPluginLib",
|
|
|
|
|
"launcher_quickstep_log_protos_lite",
|
2024-04-15 08:42:29 +00:00
|
|
|
"android.os.flags-aconfig-java",
|
2021-03-12 16:00:40 -08:00
|
|
|
"androidx-constraintlayout_constraintlayout",
|
2021-02-25 00:58:05 -08:00
|
|
|
"androidx.recyclerview_recyclerview",
|
|
|
|
|
"androidx.dynamicanimation_dynamicanimation",
|
2021-03-12 16:00:40 -08:00
|
|
|
"androidx.fragment_fragment",
|
2021-02-25 00:58:05 -08:00
|
|
|
"androidx.preference_preference",
|
|
|
|
|
"androidx.slice_slice-view",
|
2021-03-12 16:00:40 -08:00
|
|
|
"androidx.cardview_cardview",
|
2023-10-10 10:50:28 -07:00
|
|
|
"androidx.window_window",
|
2021-06-09 16:34:45 -04:00
|
|
|
"com.google.android.material_material",
|
2024-04-02 15:38:57 -07:00
|
|
|
"//frameworks/libs/systemui:iconloader_base",
|
|
|
|
|
"//frameworks/libs/systemui:view_capture",
|
|
|
|
|
"//frameworks/libs/systemui:animationlib",
|
2023-11-20 18:30:35 +00:00
|
|
|
"SystemUI-statsd",
|
2023-01-24 15:41:10 +00:00
|
|
|
"launcher-testing-shared",
|
2024-03-25 10:53:06 +00:00
|
|
|
"androidx.lifecycle_lifecycle-common-java8",
|
|
|
|
|
"androidx.lifecycle_lifecycle-extensions",
|
|
|
|
|
"androidx.lifecycle_lifecycle-runtime-ktx",
|
|
|
|
|
"kotlinx_coroutines_android",
|
|
|
|
|
"kotlinx_coroutines",
|
2023-08-30 13:31:10 -07:00
|
|
|
"com_android_launcher3_flags_lib",
|
2023-10-10 14:54:39 -07:00
|
|
|
"com_android_wm_shell_flags_lib",
|
2023-11-07 22:31:46 +00:00
|
|
|
"android.appwidget.flags-aconfig-java",
|
2024-02-20 16:08:45 +00:00
|
|
|
"com.android.window.flags.window-aconfig-java",
|
2023-01-24 15:41:10 +00:00
|
|
|
],
|
2024-03-25 11:53:17 -07:00
|
|
|
manifest: "AndroidManifest-common.xml",
|
2021-02-25 00:58:05 -08:00
|
|
|
sdk_version: "current",
|
2021-05-20 10:43:23 -07:00
|
|
|
min_sdk_version: min_launcher3_sdk_version,
|
2021-03-09 18:35:52 +00:00
|
|
|
lint: {
|
2024-03-22 13:52:19 -07:00
|
|
|
baseline_filename: "lint-baseline.xml",
|
2021-03-09 18:35:52 +00:00
|
|
|
},
|
2021-02-25 00:58:05 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Build rule for Launcher3 app.
|
|
|
|
|
//
|
|
|
|
|
android_app {
|
|
|
|
|
name: "Launcher3",
|
|
|
|
|
|
|
|
|
|
static_libs: [
|
2024-03-25 11:53:17 -07:00
|
|
|
"Launcher3ResLib",
|
2021-02-25 00:58:05 -08:00
|
|
|
],
|
|
|
|
|
srcs: [
|
2022-07-12 15:45:10 +00:00
|
|
|
":launcher-src",
|
2024-03-25 11:53:17 -07:00
|
|
|
":launcher-src_no_quickstep",
|
|
|
|
|
":launcher-build-config",
|
2021-02-25 00:58:05 -08:00
|
|
|
],
|
2024-03-22 13:52:19 -07:00
|
|
|
|
2021-02-25 00:58:05 -08:00
|
|
|
optimize: {
|
2022-06-29 14:14:37 +02:00
|
|
|
proguard_flags_files: ["proguard.pro"],
|
2021-02-25 00:58:05 -08:00
|
|
|
// Proguard is disable for testing. Derivarive prjects to keep proguard enabled
|
|
|
|
|
enabled: false,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sdk_version: "current",
|
2021-05-20 10:43:23 -07:00
|
|
|
min_sdk_version: min_launcher3_sdk_version,
|
|
|
|
|
target_sdk_version: "current",
|
2021-02-25 00:58:05 -08:00
|
|
|
privileged: true,
|
|
|
|
|
system_ext_specific: true,
|
|
|
|
|
|
|
|
|
|
overrides: [
|
|
|
|
|
"Home",
|
|
|
|
|
"Launcher2",
|
|
|
|
|
],
|
|
|
|
|
required: ["privapp_whitelist_com.android.launcher3"],
|
|
|
|
|
|
|
|
|
|
jacoco: {
|
|
|
|
|
include_filter: ["com.android.launcher3.**"],
|
|
|
|
|
},
|
|
|
|
|
additional_manifests: [
|
|
|
|
|
"AndroidManifest-common.xml",
|
|
|
|
|
],
|
2021-03-09 18:35:52 +00:00
|
|
|
lint: {
|
2024-01-10 12:30:39 -08:00
|
|
|
baseline_filename: "lint-baseline.xml",
|
2021-03-09 18:35:52 +00:00
|
|
|
},
|
2021-02-25 00:58:05 -08:00
|
|
|
}
|
|
|
|
|
|
2021-03-12 16:00:40 -08:00
|
|
|
// Library with all the dependencies for building quickstep
|
|
|
|
|
android_library {
|
|
|
|
|
name: "QuickstepResLib",
|
2023-12-20 11:57:04 -08:00
|
|
|
srcs: [],
|
2021-03-12 16:00:40 -08:00
|
|
|
resource_dirs: [
|
|
|
|
|
"quickstep/res",
|
2021-02-25 00:58:05 -08:00
|
|
|
],
|
2021-08-26 10:37:17 -07:00
|
|
|
libs: [
|
|
|
|
|
"framework-statsd",
|
|
|
|
|
],
|
2021-03-12 16:00:40 -08:00
|
|
|
static_libs: [
|
|
|
|
|
"Launcher3ResLib",
|
2021-11-09 13:19:21 -08:00
|
|
|
"lottie",
|
2021-03-12 16:00:40 -08:00
|
|
|
"SystemUISharedLib",
|
2023-10-30 20:30:39 +00:00
|
|
|
"SettingsLibSettingsTheme",
|
2021-03-12 16:00:40 -08:00
|
|
|
],
|
|
|
|
|
manifest: "quickstep/AndroidManifest.xml",
|
2021-05-20 10:43:23 -07:00
|
|
|
min_sdk_version: "current",
|
2021-03-12 16:00:40 -08:00
|
|
|
}
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
// Library with all the source code and dependencies for building Launcher Go
|
2021-04-07 10:22:25 -07:00
|
|
|
android_library {
|
2024-03-25 11:53:17 -07:00
|
|
|
name: "Launcher3GoLib",
|
2021-04-07 10:22:25 -07:00
|
|
|
srcs: [
|
2022-07-12 15:45:10 +00:00
|
|
|
":launcher-src",
|
|
|
|
|
":launcher-quickstep-src",
|
2024-03-25 11:53:17 -07:00
|
|
|
"go/quickstep/src/**/*.java",
|
|
|
|
|
"go/quickstep/src/**/*.kt",
|
2021-04-07 10:22:25 -07:00
|
|
|
],
|
|
|
|
|
resource_dirs: [
|
|
|
|
|
"go/quickstep/res",
|
|
|
|
|
],
|
2021-12-02 18:22:17 +00:00
|
|
|
// Note the ordering here is important when it comes to resource
|
|
|
|
|
// overriding. We want the most specific resource overrides defined
|
|
|
|
|
// in QuickstepResLib to take precendece, so it should be the final
|
|
|
|
|
// dependency. See b/205278434 for how this can go wrong.
|
2021-04-07 10:22:25 -07:00
|
|
|
static_libs: [
|
|
|
|
|
"QuickstepResLib",
|
2021-08-13 13:18:24 -07:00
|
|
|
"androidx.room_room-runtime",
|
2021-04-07 10:22:25 -07:00
|
|
|
],
|
2021-08-13 13:18:24 -07:00
|
|
|
plugins: ["androidx.room_room-compiler-plugin"],
|
2023-07-07 09:41:29 +05:30
|
|
|
manifest: "quickstep/AndroidManifest.xml",
|
2021-04-07 10:22:25 -07:00
|
|
|
additional_manifests: [
|
|
|
|
|
"go/AndroidManifest.xml",
|
|
|
|
|
"AndroidManifest-common.xml",
|
|
|
|
|
],
|
2021-05-20 10:43:23 -07:00
|
|
|
min_sdk_version: "current",
|
2024-01-11 14:03:12 -08:00
|
|
|
// TODO(b/319712088): re-enable use_resource_processor
|
|
|
|
|
use_resource_processor: false,
|
2021-04-07 10:22:25 -07:00
|
|
|
}
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
// Library with all the source code and dependencies for building Quickstep
|
2021-07-29 15:48:24 -07:00
|
|
|
android_library {
|
|
|
|
|
name: "Launcher3QuickStepLib",
|
|
|
|
|
srcs: [
|
2022-07-12 15:45:10 +00:00
|
|
|
":launcher-src",
|
|
|
|
|
":launcher-quickstep-src",
|
2024-03-25 11:53:17 -07:00
|
|
|
":launcher-build-config",
|
2021-07-29 15:48:24 -07:00
|
|
|
],
|
2021-11-08 15:31:49 +00:00
|
|
|
resource_dirs: [],
|
2021-08-26 10:37:17 -07:00
|
|
|
libs: [
|
|
|
|
|
"framework-statsd",
|
|
|
|
|
],
|
2021-12-02 18:22:17 +00:00
|
|
|
// Note the ordering here is important when it comes to resource
|
|
|
|
|
// overriding. We want the most specific resource overrides defined
|
|
|
|
|
// in QuickstepResLib to take precendece, so it should be the final
|
|
|
|
|
// dependency. See b/208647810 for how this can go wrong.
|
2021-07-29 15:48:24 -07:00
|
|
|
static_libs: [
|
|
|
|
|
"SystemUI-statsd",
|
2021-12-02 18:22:17 +00:00
|
|
|
"QuickstepResLib",
|
2021-07-29 15:48:24 -07:00
|
|
|
],
|
|
|
|
|
manifest: "quickstep/AndroidManifest.xml",
|
|
|
|
|
platform_apis: true,
|
|
|
|
|
min_sdk_version: "current",
|
2024-01-11 14:03:12 -08:00
|
|
|
// TODO(b/319712088): re-enable use_resource_processor
|
|
|
|
|
use_resource_processor: false,
|
2021-07-29 15:48:24 -07:00
|
|
|
}
|
2022-05-18 15:29:59 +00:00
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
// Build rule for Quickstep app.
|
2022-05-18 15:29:59 +00:00
|
|
|
android_app {
|
2024-03-25 11:53:17 -07:00
|
|
|
name: "Launcher3QuickStep",
|
2022-05-18 15:29:59 +00:00
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
static_libs: ["Launcher3QuickStepLib"],
|
2022-05-18 15:29:59 +00:00
|
|
|
optimize: {
|
2024-03-25 11:53:17 -07:00
|
|
|
enabled: false,
|
2022-05-18 15:29:59 +00:00
|
|
|
},
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
platform_apis: true,
|
2022-05-18 15:29:59 +00:00
|
|
|
min_sdk_version: "current",
|
|
|
|
|
target_sdk_version: "current",
|
2024-03-25 11:53:17 -07:00
|
|
|
|
2022-05-18 15:29:59 +00:00
|
|
|
privileged: true,
|
|
|
|
|
system_ext_specific: true,
|
|
|
|
|
overrides: [
|
|
|
|
|
"Home",
|
|
|
|
|
"Launcher2",
|
|
|
|
|
"Launcher3",
|
|
|
|
|
],
|
|
|
|
|
required: ["privapp_whitelist_com.android.launcher3"],
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
resource_dirs: ["quickstep/res"],
|
|
|
|
|
|
2022-05-18 15:29:59 +00:00
|
|
|
additional_manifests: [
|
2024-03-25 11:53:17 -07:00
|
|
|
"quickstep/AndroidManifest-launcher.xml",
|
2022-05-18 15:29:59 +00:00
|
|
|
"AndroidManifest-common.xml",
|
|
|
|
|
],
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
manifest: "quickstep/AndroidManifest.xml",
|
2022-05-18 15:29:59 +00:00
|
|
|
jacoco: {
|
|
|
|
|
include_filter: ["com.android.launcher3.*"],
|
2023-12-20 11:57:04 -08:00
|
|
|
},
|
2022-05-18 15:29:59 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
|
|
|
|
|
// Build rule for Launcher3 Go app with quickstep for Android Go devices.
|
|
|
|
|
// Note that the following two rules are exactly same, and should
|
|
|
|
|
// eventually be merged into a single target
|
2022-05-18 15:29:59 +00:00
|
|
|
android_app {
|
2024-03-25 11:53:17 -07:00
|
|
|
name: "Launcher3Go",
|
2022-05-18 15:29:59 +00:00
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
static_libs: ["Launcher3GoLib"],
|
2024-04-12 19:16:19 +00:00
|
|
|
resource_dirs: [],
|
2022-05-18 15:29:59 +00:00
|
|
|
|
|
|
|
|
platform_apis: true,
|
|
|
|
|
min_sdk_version: "current",
|
|
|
|
|
target_sdk_version: "current",
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
optimize: {
|
|
|
|
|
proguard_flags_files: ["proguard.flags"],
|
|
|
|
|
enabled: true,
|
|
|
|
|
},
|
|
|
|
|
|
2022-05-18 15:29:59 +00:00
|
|
|
privileged: true,
|
|
|
|
|
system_ext_specific: true,
|
|
|
|
|
overrides: [
|
|
|
|
|
"Home",
|
|
|
|
|
"Launcher2",
|
|
|
|
|
"Launcher3",
|
2024-03-25 11:53:17 -07:00
|
|
|
"Launcher3QuickStep",
|
2022-05-18 15:29:59 +00:00
|
|
|
],
|
|
|
|
|
required: ["privapp_whitelist_com.android.launcher3"],
|
|
|
|
|
|
|
|
|
|
additional_manifests: [
|
2024-03-25 11:53:17 -07:00
|
|
|
"go/AndroidManifest.xml",
|
|
|
|
|
"go/AndroidManifest-launcher.xml",
|
2022-05-18 15:29:59 +00:00
|
|
|
"AndroidManifest-common.xml",
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
manifest: "quickstep/AndroidManifest.xml",
|
|
|
|
|
jacoco: {
|
|
|
|
|
include_filter: ["com.android.launcher3.*"],
|
2023-12-20 11:57:04 -08:00
|
|
|
},
|
2022-05-18 15:29:59 +00:00
|
|
|
}
|
|
|
|
|
android_app {
|
|
|
|
|
name: "Launcher3QuickStepGo",
|
|
|
|
|
|
2024-03-25 11:53:17 -07:00
|
|
|
static_libs: ["Launcher3GoLib"],
|
2024-04-12 19:16:19 +00:00
|
|
|
resource_dirs: [],
|
2022-05-18 15:29:59 +00:00
|
|
|
|
|
|
|
|
platform_apis: true,
|
|
|
|
|
min_sdk_version: "current",
|
|
|
|
|
target_sdk_version: "current",
|
|
|
|
|
|
|
|
|
|
optimize: {
|
|
|
|
|
proguard_flags_files: ["proguard.flags"],
|
|
|
|
|
enabled: true,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
privileged: true,
|
|
|
|
|
system_ext_specific: true,
|
|
|
|
|
overrides: [
|
|
|
|
|
"Home",
|
|
|
|
|
"Launcher2",
|
|
|
|
|
"Launcher3",
|
|
|
|
|
"Launcher3QuickStep",
|
|
|
|
|
],
|
|
|
|
|
required: ["privapp_whitelist_com.android.launcher3"],
|
|
|
|
|
|
|
|
|
|
additional_manifests: [
|
|
|
|
|
"go/AndroidManifest.xml",
|
|
|
|
|
"go/AndroidManifest-launcher.xml",
|
|
|
|
|
"AndroidManifest-common.xml",
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
manifest: "quickstep/AndroidManifest.xml",
|
|
|
|
|
jacoco: {
|
|
|
|
|
include_filter: ["com.android.launcher3.*"],
|
2023-12-20 11:57:04 -08:00
|
|
|
},
|
2022-05-18 15:29:59 +00:00
|
|
|
}
|