Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 1 | // Copyright (C) 2018 The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Bob Badour | 4bdf380 | 2021-02-12 17:08:17 -0800 | [diff] [blame] | 15 | package { |
Bob Badour | a7548b5 | 2022-01-27 22:04:48 -0800 | [diff] [blame] | 16 | // See: http://go/android-license-faq |
| 17 | default_applicable_licenses: ["Android-Apache-2.0"], |
Bob Badour | 4bdf380 | 2021-02-12 17:08:17 -0800 | [diff] [blame] | 18 | } |
| 19 | |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 20 | min_launcher3_sdk_version = "26" |
| 21 | |
vadimt | 09df083 | 2019-03-07 14:59:30 -0800 | [diff] [blame] | 22 | android_library { |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 23 | name: "launcher-aosp-tapl", |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 24 | libs: [ |
| 25 | "framework-statsd", |
| 26 | ], |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 27 | static_libs: [ |
| 28 | "androidx.annotation_annotation", |
Brett Chabot | d7d692c | 2018-10-23 21:17:58 -0700 | [diff] [blame] | 29 | "androidx.test.runner", |
| 30 | "androidx.test.rules", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 31 | "androidx.test.uiautomator_uiautomator", |
Hyunyoung Song | bb71582 | 2020-08-04 10:45:53 -0700 | [diff] [blame] | 32 | "androidx.preference_preference", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 33 | "SystemUISharedLib", |
Jon Miranda | 27f9559 | 2022-04-06 17:29:09 +0000 | [diff] [blame] | 34 | "SystemUIAnimationLib", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 35 | ], |
| 36 | srcs: [ |
| 37 | "tests/tapl/**/*.java", |
vadimt | 1b383af | 2019-05-08 15:29:37 -0700 | [diff] [blame] | 38 | "src/com/android/launcher3/ResourceUtils.java", |
Sunny Goyal | ab3963d | 2019-05-23 00:50:08 -0700 | [diff] [blame] | 39 | "src/com/android/launcher3/testing/TestProtocol.java", |
Benno Lin | 7738cac | 2021-09-03 20:18:34 +0000 | [diff] [blame] | 40 | "src/com/android/launcher3/testing/*Request.java", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 41 | ], |
Sunny Goyal | 572aca4 | 2021-03-24 15:21:39 -0700 | [diff] [blame] | 42 | resource_dirs: [ ], |
vadimt | 09df083 | 2019-03-07 14:59:30 -0800 | [diff] [blame] | 43 | manifest: "tests/tapl/AndroidManifest.xml", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 44 | platform_apis: true, |
| 45 | } |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 46 | |
| 47 | java_library_static { |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame] | 48 | name: "launcher_log_protos_lite", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 49 | srcs: [ |
| 50 | "protos/*.proto", |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 51 | "protos_overrides/*.proto", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 52 | ], |
| 53 | sdk_version: "current", |
| 54 | proto: { |
| 55 | type: "lite", |
| 56 | local_include_dirs:[ |
| 57 | "protos", |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 58 | "protos_overrides", |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 59 | ], |
| 60 | }, |
thiruram | c1c2bfa | 2020-02-04 18:56:40 -0800 | [diff] [blame] | 61 | static_libs: ["libprotobuf-java-lite"], |
thiruram | 5e1ecf6 | 2019-11-13 17:49:35 -0800 | [diff] [blame] | 62 | } |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 63 | |
thiruram | cbeb13d | 2021-01-27 14:45:58 -0800 | [diff] [blame] | 64 | java_library_static { |
| 65 | name: "launcher_quickstep_log_protos_lite", |
| 66 | srcs: [ |
| 67 | "quickstep/protos_overrides/*.proto", |
| 68 | ], |
| 69 | sdk_version: "current", |
| 70 | proto: { |
| 71 | type: "lite", |
| 72 | local_include_dirs:[ |
| 73 | "quickstep/protos_overrides", |
| 74 | ], |
| 75 | }, |
| 76 | static_libs: [ |
| 77 | "libprotobuf-java-lite", |
| 78 | "launcher_log_protos_lite" |
| 79 | ], |
| 80 | } |
| 81 | |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 82 | java_library { |
| 83 | name: "LauncherPluginLib", |
| 84 | |
| 85 | static_libs: ["PluginCoreLib"], |
| 86 | |
| 87 | srcs: ["src_plugins/**/*.java"], |
| 88 | |
| 89 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 90 | min_sdk_version: min_launcher3_sdk_version, |
Hyunyoung Song | 8605be3 | 2020-02-21 14:52:25 -0800 | [diff] [blame] | 91 | } |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 92 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 93 | // Library with all the dependencies for building Launcher3 |
| 94 | android_library { |
| 95 | name: "Launcher3ResLib", |
| 96 | srcs: [ ], |
| 97 | resource_dirs: ["res"], |
| 98 | static_libs: [ |
| 99 | "LauncherPluginLib", |
| 100 | "launcher_quickstep_log_protos_lite", |
| 101 | "androidx-constraintlayout_constraintlayout", |
| 102 | "androidx.recyclerview_recyclerview", |
| 103 | "androidx.dynamicanimation_dynamicanimation", |
| 104 | "androidx.fragment_fragment", |
| 105 | "androidx.preference_preference", |
| 106 | "androidx.slice_slice-view", |
| 107 | "androidx.cardview_cardview", |
Brian Isganitis | 93031bc | 2021-06-09 16:34:45 -0400 | [diff] [blame] | 108 | "com.google.android.material_material", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 109 | "iconloader_base", |
| 110 | ], |
| 111 | manifest: "AndroidManifest-common.xml", |
| 112 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 113 | min_sdk_version: min_launcher3_sdk_version, |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 114 | lint: { |
| 115 | baseline_filename: "lint-baseline-res-lib.xml", |
| 116 | }, |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 117 | } |
| 118 | |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 119 | // |
| 120 | // Build rule for Launcher3 dependencies lib. |
| 121 | // |
| 122 | android_library { |
| 123 | name: "Launcher3CommonDepsLib", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 124 | srcs: ["src_build_config/**/*.java"], |
| 125 | static_libs: ["Launcher3ResLib"], |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 126 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 127 | min_sdk_version: min_launcher3_sdk_version, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 128 | manifest: "AndroidManifest-common.xml", |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 129 | lint: { |
| 130 | baseline_filename: "lint-baseline-common-deps-lib.xml", |
| 131 | }, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | // |
| 135 | // Build rule for Launcher3 app. |
| 136 | // |
| 137 | android_app { |
| 138 | name: "Launcher3", |
| 139 | |
| 140 | static_libs: [ |
| 141 | "Launcher3CommonDepsLib", |
| 142 | ], |
| 143 | srcs: [ |
| 144 | "src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 145 | "src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 146 | "src_shortcuts_overrides/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 147 | "src_shortcuts_overrides/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 148 | "src_ui_overrides/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 149 | "src_ui_overrides/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 150 | "ext_tests/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 151 | "ext_tests/src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 152 | ], |
| 153 | resource_dirs: [ |
| 154 | "ext_tests/res", |
| 155 | ], |
| 156 | optimize: { |
| 157 | proguard_flags_files: ["proguard.flags"], |
| 158 | // Proguard is disable for testing. Derivarive prjects to keep proguard enabled |
| 159 | enabled: false, |
| 160 | }, |
| 161 | |
| 162 | sdk_version: "current", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 163 | min_sdk_version: min_launcher3_sdk_version, |
| 164 | target_sdk_version: "current", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 165 | privileged: true, |
| 166 | system_ext_specific: true, |
| 167 | |
| 168 | overrides: [ |
| 169 | "Home", |
| 170 | "Launcher2", |
| 171 | ], |
| 172 | required: ["privapp_whitelist_com.android.launcher3"], |
| 173 | |
| 174 | jacoco: { |
| 175 | include_filter: ["com.android.launcher3.**"], |
| 176 | }, |
| 177 | additional_manifests: [ |
| 178 | "AndroidManifest-common.xml", |
| 179 | ], |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 180 | lint: { |
| 181 | baseline_filename: "lint-baseline-launcher3.xml", |
| 182 | }, |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 183 | } |
| 184 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 185 | // Library with all the dependencies for building quickstep |
| 186 | android_library { |
| 187 | name: "QuickstepResLib", |
| 188 | srcs: [ ], |
| 189 | resource_dirs: [ |
| 190 | "quickstep/res", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 191 | ], |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 192 | libs: [ |
| 193 | "framework-statsd", |
| 194 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 195 | static_libs: [ |
| 196 | "Launcher3ResLib", |
Schneider Victor-tulias | d0865f8 | 2021-11-09 13:19:21 -0800 | [diff] [blame] | 197 | "lottie", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 198 | "SystemUISharedLib", |
| 199 | "SystemUI-statsd", |
Jon Miranda | 27f9559 | 2022-04-06 17:29:09 +0000 | [diff] [blame] | 200 | "SystemUIAnimationLib", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 201 | ], |
| 202 | manifest: "quickstep/AndroidManifest.xml", |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 203 | min_sdk_version: "current", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | |
| 207 | // Source code used for test helpers |
| 208 | filegroup { |
| 209 | name: "launcher-src-ext-tests", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 210 | srcs: [ |
| 211 | "ext_tests/src/**/*.java", |
| 212 | "ext_tests/src/**/*.kt", |
Schneider Victor-tulias | fb252e7 | 2022-02-10 11:10:21 -0800 | [diff] [blame] | 213 | "quickstep/ext_tests/src/**/*.java", |
| 214 | "quickstep/ext_tests/src/**/*.kt", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 215 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | // Common source files used to build launcher |
| 219 | filegroup { |
| 220 | name: "launcher-src-no-build-config", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 221 | srcs: [ |
| 222 | "src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 223 | "src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 224 | "src_shortcuts_overrides/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 225 | "src_shortcuts_overrides/**/*.kt", |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 226 | "quickstep/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 227 | "quickstep/src/**/*.kt", |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 228 | ], |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 229 | } |
| 230 | |
Shikha Malhotra | e957b60 | 2022-04-11 07:57:18 +0000 | [diff] [blame] | 231 | // Common source files used to build go launcher except go/src files |
Shikha Malhotra | 7884332 | 2022-02-24 13:30:57 +0000 | [diff] [blame] | 232 | filegroup { |
| 233 | name: "launcher-go-src-no-build-config", |
| 234 | srcs: [ |
| 235 | "src/**/*.java", |
| 236 | "src/**/*.kt", |
| 237 | "quickstep/src/**/*.java", |
| 238 | "quickstep/src/**/*.kt", |
Shikha Malhotra | 7884332 | 2022-02-24 13:30:57 +0000 | [diff] [blame] | 239 | "go/quickstep/src/**/*.java", |
| 240 | "go/quickstep/src/**/*.kt", |
| 241 | ], |
| 242 | } |
| 243 | |
Sunny Goyal | f5c42ea | 2021-03-12 16:00:40 -0800 | [diff] [blame] | 244 | // Proguard files for Launcher3 |
| 245 | filegroup { |
| 246 | name: "launcher-proguard-rules", |
| 247 | srcs: ["proguard.flags"], |
Hyunyoung Song | 5a007fe | 2021-02-25 00:58:05 -0800 | [diff] [blame] | 248 | } |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 249 | |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 250 | // Library with all the dependencies for building Launcher Go |
| 251 | android_library { |
| 252 | name: "LauncherGoResLib", |
| 253 | srcs: [ |
| 254 | "src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 255 | "src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 256 | "quickstep/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 257 | "quickstep/src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 258 | "go/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 259 | "go/src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 260 | "go/quickstep/src/**/*.java", |
Thales Lima | 26f4491 | 2021-10-21 15:34:28 +0100 | [diff] [blame] | 261 | "go/quickstep/src/**/*.kt", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 262 | ], |
| 263 | resource_dirs: [ |
| 264 | "go/res", |
| 265 | "go/quickstep/res", |
| 266 | ], |
Ben Murdoch | fabc873 | 2021-12-02 18:22:17 +0000 | [diff] [blame] | 267 | // Note the ordering here is important when it comes to resource |
| 268 | // overriding. We want the most specific resource overrides defined |
| 269 | // in QuickstepResLib to take precendece, so it should be the final |
| 270 | // dependency. See b/205278434 for how this can go wrong. |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 271 | static_libs: [ |
Greg Kaiser | 6f220d9 | 2021-11-05 16:12:47 +0000 | [diff] [blame] | 272 | "Launcher3CommonDepsLib", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 273 | "QuickstepResLib", |
Jon Spivack | 89c21c7 | 2021-08-13 13:18:24 -0700 | [diff] [blame] | 274 | "androidx.room_room-runtime", |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 275 | ], |
Jon Spivack | 89c21c7 | 2021-08-13 13:18:24 -0700 | [diff] [blame] | 276 | plugins: ["androidx.room_room-compiler-plugin"], |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 277 | manifest: "quickstep/AndroidManifest-launcher.xml", |
| 278 | additional_manifests: [ |
| 279 | "go/AndroidManifest.xml", |
| 280 | "AndroidManifest-common.xml", |
| 281 | ], |
Sunny Goyal | 1fb271f | 2021-05-20 10:43:23 -0700 | [diff] [blame] | 282 | min_sdk_version: "current", |
Pedro Loureiro | 1e296c1 | 2021-03-09 18:35:52 +0000 | [diff] [blame] | 283 | lint: { |
| 284 | baseline_filename: "lint-baseline-go-res-lib.xml", |
| 285 | }, |
Jon Spivack | a65d68b | 2021-04-07 10:22:25 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 288 | // Build rule for Quickstep library |
| 289 | android_library { |
| 290 | name: "Launcher3QuickStepLib", |
| 291 | srcs: [ |
| 292 | ":launcher-src-no-build-config", |
| 293 | ], |
Thales Lima | c335ad2 | 2021-11-08 15:31:49 +0000 | [diff] [blame] | 294 | resource_dirs: [], |
Thiru Ramasamy | d495e8c | 2021-08-26 10:37:17 -0700 | [diff] [blame] | 295 | libs: [ |
| 296 | "framework-statsd", |
| 297 | ], |
Ben Murdoch | fabc873 | 2021-12-02 18:22:17 +0000 | [diff] [blame] | 298 | // Note the ordering here is important when it comes to resource |
| 299 | // overriding. We want the most specific resource overrides defined |
| 300 | // in QuickstepResLib to take precendece, so it should be the final |
| 301 | // dependency. See b/208647810 for how this can go wrong. |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 302 | static_libs: [ |
| 303 | "SystemUI-statsd", |
| 304 | "SystemUISharedLib", |
Thales Lima | c335ad2 | 2021-11-08 15:31:49 +0000 | [diff] [blame] | 305 | "Launcher3CommonDepsLib", |
Ben Murdoch | fabc873 | 2021-12-02 18:22:17 +0000 | [diff] [blame] | 306 | "QuickstepResLib", |
Jon Miranda | 27f9559 | 2022-04-06 17:29:09 +0000 | [diff] [blame] | 307 | "SystemUIAnimationLib", |
Sunny Goyal | 4af8cf9 | 2021-07-29 15:48:24 -0700 | [diff] [blame] | 308 | ], |
| 309 | manifest: "quickstep/AndroidManifest.xml", |
| 310 | platform_apis: true, |
| 311 | min_sdk_version: "current", |
| 312 | lint: { |
| 313 | baseline_filename: "lint-baseline-launcher3.xml", |
| 314 | }, |
| 315 | } |