Sasha Smundak | 35ff6fb | 2019-01-08 14:33:14 -0800 | [diff] [blame] | 1 | android_app { |
| 2 | name: "CallLogBackup", |
| 3 | // Only compile source java files in this apk. |
| 4 | srcs: ["src/**/*.java"], |
| 5 | |
| 6 | // The Jacoco tool analyzes code coverage when running unit tests on the |
| 7 | // application. This configuration line selects which packages will be analyzed, |
| 8 | // leaving out code which is tested by other means (e.g. static libraries) that |
| 9 | // would dilute the coverage results. These options do not affect regular |
| 10 | // production builds. |
| 11 | jacoco: { |
| 12 | include_filter: ["com.android.calllogbackup.*"], |
| 13 | }, |
| 14 | platform_apis: true, |
| 15 | certificate: "shared", |
| 16 | privileged: true, |
| 17 | optimize: { |
| 18 | proguard_flags_files: ["proguard.flags"], |
| 19 | }, |
| 20 | |
| 21 | } |