blob: ef3c1484b7f3f727ac17c65089381add33c201d9 [file] [log] [blame]
Bob Badour2ea005d2021-02-12 17:41:02 -08001package {
Bob Badour996006c2022-01-27 18:17:27 -08002 // See: http://go/android-license-faq
3 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour2ea005d2021-02-12 17:41:02 -08004}
5
Sasha Smundak35ff6fb2019-01-08 14:33:14 -08006android_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}