• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["packages_providers_CallLogProvider_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8    name: "packages_providers_CallLogProvider_license",
9    visibility: [":__subpackages__"],
10    license_kinds: [
11        "SPDX-license-identifier-Apache-2.0",
12    ],
13    license_text: [
14        "NOTICE",
15    ],
16}
17
18android_app {
19    name: "CallLogBackup",
20    // Only compile source java files in this apk.
21    srcs: ["src/**/*.java"],
22
23    // The Jacoco tool analyzes code coverage when running unit tests on the
24    // application. This configuration line selects which packages will be analyzed,
25    // leaving out code which is tested by other means (e.g. static libraries) that
26    // would dilute the coverage results. These options do not affect regular
27    // production builds.
28    jacoco: {
29        include_filter: ["com.android.calllogbackup.*"],
30    },
31    platform_apis: true,
32    certificate: "shared",
33    privileged: true,
34    optimize: {
35        proguard_flags_files: ["proguard.flags"],
36    },
37
38}
39