blob: 2cb34680845b87ba075477b33eea9d72c5f6b6f5 [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
Helen Qin2e8b4d12023-01-10 01:35:35 +000017 dex_preopt: {
18 profile_guided: true,
19 profile: "profile.txt.prof",
20 },
21
Helen Qindb3645e2022-09-21 05:02:34 +000022 static_libs: [
23 "androidx.activity_activity-compose",
24 "androidx.appcompat_appcompat",
Helen Qin4e2bf062022-10-31 20:34:41 +000025 "androidx.compose.animation_animation-core",
26 "androidx.compose.foundation_foundation",
27 "androidx.compose.material3_material3",
28 "androidx.compose.material_material-icons-core",
29 "androidx.compose.material_material-icons-extended",
Helen Qindb3645e2022-09-21 05:02:34 +000030 "androidx.compose.runtime_runtime",
31 "androidx.compose.ui_ui",
32 "androidx.compose.ui_ui-tooling",
33 "androidx.core_core-ktx",
34 "androidx.lifecycle_lifecycle-extensions",
35 "androidx.lifecycle_lifecycle-livedata",
36 "androidx.lifecycle_lifecycle-runtime-ktx",
37 "androidx.lifecycle_lifecycle-viewmodel-compose",
Helen Qindb3645e2022-09-21 05:02:34 +000038 "androidx.recyclerview_recyclerview",
Helen Qin4e2bf062022-10-31 20:34:41 +000039 "kotlinx-coroutines-core",
Helen Qindb3645e2022-09-21 05:02:34 +000040 ],
41
42 platform_apis: true,
Helen Qinebaf11e2023-01-13 22:03:11 +000043 privileged: true,
Helen Qindb3645e2022-09-21 05:02:34 +000044
45 kotlincflags: ["-Xjvm-default=enable"],
Helen Qin7731c982022-10-18 01:13:43 +000046
47 optimize: {
48 proguard_compatibility: false,
49 },
Helen Qindb3645e2022-09-21 05:02:34 +000050}