blob: c0dff168969da610696fce3b99e1301ae163882e [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",
Gustavo Paganie3f4a1d2023-09-11 09:21:48 +000025 "Horologist",
26 "PlatformComposeCore",
27 "androidx.activity_activity-compose",
28 "androidx.appcompat_appcompat",
29 "androidx.compose.foundation_foundation",
30 "androidx.compose.foundation_foundation-layout",
31 "androidx.compose.material_material-icons-core",
32 "androidx.compose.material_material-icons-extended",
33 "androidx.compose.runtime_runtime",
34 "androidx.compose.ui_ui",
Gustavo Paganie3eb9a12023-09-21 18:08:22 +000035 "androidx.compose.ui_ui-tooling",
Gustavo Paganie3f4a1d2023-09-11 09:21:48 +000036 "androidx.core_core-ktx",
37 "androidx.lifecycle_lifecycle-extensions",
38 "androidx.lifecycle_lifecycle-livedata",
39 "androidx.lifecycle_lifecycle-runtime-ktx",
40 "androidx.lifecycle_lifecycle-viewmodel-compose",
41 "androidx.wear.compose_compose-foundation",
42 "androidx.wear.compose_compose-material",
43 "androidx.wear.compose_compose-navigation",
44 "kotlinx-coroutines-core",
45 ],
46
47 platform_apis: true,
48 privileged: true,
49
50 kotlincflags: ["-Xjvm-default=all"],
51
52 optimize: {
53 proguard_compatibility: false,
54 },
55}