• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2package {
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "packages_providers_MediaProvider_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["packages_providers_MediaProvider_license"],
9}
10
11android_app {
12    name: "MediaProviderLegacy",
13    manifest: "AndroidManifest.xml",
14
15    static_libs: [
16        "androidx.appcompat_appcompat",
17        "androidx.core_core",
18        "guava",
19        "modules-utils-build",
20    ],
21
22    libs: ["app-compat-annotations"],
23
24    srcs: [
25        "src/**/*.aidl",
26        "src/**/*.java",
27        ":mediaprovider-database-sources",
28    ],
29
30    platform_apis: true,
31    certificate: "media",
32    privileged: true,
33}
34