1package { 2 3 default_applicable_licenses: ["packages_apps_Calendar_license"], 4} 5 6license { 7 8 name: "packages_apps_Calendar_license", 9 visibility: [":__subpackages__"], 10 license_kinds: [ 11 "SPDX-license-identifier-Apache-2.0", 12 ], 13 license_text: [ 14 "NOTICE", 15 ], 16} 17 18// Include res dir from chips 19 20android_app { 21 name: "Calendar", 22 23 jacoco: { 24 include_filter: ["com.android.calendar.**"], 25 }, 26 27 srcs: [ 28 "src/**/*.kt", 29 ], 30 31 // bundled 32 //LOCAL_STATIC_JAVA_LIBRARIES += 33 //# android-common 34 //# libchips 35 //# calendar-common 36 37 // unbundled 38 static_libs: [ 39 "android-common", 40 "libchips", 41 "colorpicker", 42 "android-opt-timezonepicker", 43 "androidx.legacy_legacy-support-v4", 44 "calendar-common", 45 ], 46 47 sdk_version: "current", 48 target_sdk_version: "34", 49 optimize: { 50 proguard_flags_files: ["proguard.flags"], 51 }, 52 53 product_specific: true, 54 55 aaptflags: ["--auto-add-overlay"], 56} 57