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