blob: ae69019176305e720a7ba6d01a6e4b9efcd15172 [file] [log] [blame]
Bob Badour8a6a2bc2021-02-12 17:07:05 -08001package {
2 default_applicable_licenses: [
3 "frameworks_base_packages_DynamicSystemInstallationService_license",
4 ],
5}
6
7// Added automatically by a large-scale-change
8// See: http://go/android-license-faq
9license {
10 name: "frameworks_base_packages_DynamicSystemInstallationService_license",
11 visibility: [":__subpackages__"],
12 license_kinds: [
13 "SPDX-license-identifier-Apache-2.0",
14 ],
15 license_text: [
16 "NOTICE",
17 ],
18}
19
Colin Cross20bc2bf2019-07-24 15:53:15 -070020android_app {
21 name: "DynamicSystemInstallationService",
Jeff Sharkeyd23b5372020-10-23 14:30:42 -060022 defaults: ["platform_app_defaults"],
Colin Cross20bc2bf2019-07-24 15:53:15 -070023
24 srcs: ["src/**/*.java"],
Yi-Yo Chiangd43cfe42022-03-16 23:52:15 +080025 static_libs: [
26 "DynamicSystemInstallationService-logtags",
27 ],
Colin Cross20bc2bf2019-07-24 15:53:15 -070028 resource_dirs: ["res"],
29
30 certificate: "platform",
31 privileged: true,
32 platform_apis: true,
Colin Cross20bc2bf2019-07-24 15:53:15 -070033}
Yi-Yo Chiangd43cfe42022-03-16 23:52:15 +080034
35java_library {
36 name: "DynamicSystemInstallationService-logtags",
37 srcs: ["src/**/*.logtags"],
38}