blob: 639e8d18b306c9fa95f0591e744d1db909fe23ee [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: [
24 "Horologist",
25 "PlatformComposeCore",
26 "androidx.activity_activity-compose",
27 "androidx.appcompat_appcompat",
28 "androidx.compose.foundation_foundation",
29 "androidx.compose.foundation_foundation-layout",
30 "androidx.compose.material_material-icons-core",
31 "androidx.compose.material_material-icons-extended",
32 "androidx.compose.runtime_runtime",
33 "androidx.compose.ui_ui",
34 "androidx.core_core-ktx",
35 "androidx.lifecycle_lifecycle-extensions",
36 "androidx.lifecycle_lifecycle-livedata",
37 "androidx.lifecycle_lifecycle-runtime-ktx",
38 "androidx.lifecycle_lifecycle-viewmodel-compose",
39 "androidx.wear.compose_compose-foundation",
40 "androidx.wear.compose_compose-material",
41 "androidx.wear.compose_compose-navigation",
42 "kotlinx-coroutines-core",
43 ],
44
45 platform_apis: true,
46 privileged: true,
47
48 kotlincflags: ["-Xjvm-default=all"],
49
50 optimize: {
51 proguard_compatibility: false,
52 },
53}