blob: c883b1f26160eb42208ba6c3688b01f4213a07e5 [file] [log] [blame]
Gustavo Paganie3f4a1d2023-09-11 09:21:48 +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: "ClockworkCredentialManager",
12 defaults: ["platform_app_defaults"],
13 certificate: "platform",
14 manifest: "AndroidManifest.xml",
15 srcs: ["src/**/*.kt"],
16 resource_dirs: ["res"],
17
18 dex_preopt: {
19 profile_guided: true,
20 profile: "profile.txt.prof",
21 },
22
23 static_libs: [
Gustavo Paganie10140e2023-09-13 18:57:47 +000024 "CredentialManagerShared",
shuanghao50fdb1a2023-10-26 18:30:11 +000025 "hilt_android",
Gustavo Paganie3f4a1d2023-09-11 09:21:48 +000026 "Horologist",
27 "PlatformComposeCore",
28 "androidx.activity_activity-compose",
29 "androidx.appcompat_appcompat",
30 "androidx.compose.foundation_foundation",
31 "androidx.compose.foundation_foundation-layout",
32 "androidx.compose.material_material-icons-core",
33 "androidx.compose.material_material-icons-extended",
34 "androidx.compose.runtime_runtime",
35 "androidx.compose.ui_ui",
Gustavo Paganie3eb9a12023-09-21 18:08:22 +000036 "androidx.compose.ui_ui-tooling",
Gustavo Paganie3f4a1d2023-09-11 09:21:48 +000037 "androidx.core_core-ktx",
38 "androidx.lifecycle_lifecycle-extensions",
39 "androidx.lifecycle_lifecycle-livedata",
40 "androidx.lifecycle_lifecycle-runtime-ktx",
Gustavo Pagani19c80112023-09-22 17:16:43 +000041 "androidx.lifecycle_lifecycle-runtime-compose",
Gustavo Paganie3f4a1d2023-09-11 09:21:48 +000042 "androidx.lifecycle_lifecycle-viewmodel-compose",
43 "androidx.wear.compose_compose-foundation",
44 "androidx.wear.compose_compose-material",
45 "androidx.wear.compose_compose-navigation",
46 "kotlinx-coroutines-core",
47 ],
48
49 platform_apis: true,
50 privileged: true,
51
52 kotlincflags: ["-Xjvm-default=all"],
53
54 optimize: {
55 proguard_compatibility: false,
56 },
57}