blob: 25529bba382f0a0c6dcaa71176011bee59f131db [file] [log] [blame]
Helen Qindb3645e2022-09-21 05:02:34 +00001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
10android_app {
11 name: "CredentialManager",
12 defaults: ["platform_app_defaults"],
13 certificate: "platform",
14 srcs: ["src/**/*.kt"],
15 resource_dirs: ["res"],
16
17 static_libs: [
18 "androidx.activity_activity-compose",
19 "androidx.appcompat_appcompat",
20 "androidx.compose.material_material",
21 "androidx.compose.runtime_runtime",
22 "androidx.compose.ui_ui",
23 "androidx.compose.ui_ui-tooling",
24 "androidx.core_core-ktx",
25 "androidx.lifecycle_lifecycle-extensions",
26 "androidx.lifecycle_lifecycle-livedata",
27 "androidx.lifecycle_lifecycle-runtime-ktx",
28 "androidx.lifecycle_lifecycle-viewmodel-compose",
Helen Qindb3645e2022-09-21 05:02:34 +000029 "androidx.recyclerview_recyclerview",
30 ],
31
32 platform_apis: true,
33
34 kotlincflags: ["-Xjvm-default=enable"],
Helen Qin7731c982022-10-18 01:13:43 +000035
36 optimize: {
37 proguard_compatibility: false,
38 },
Helen Qindb3645e2022-09-21 05:02:34 +000039}