Gustavo Pagani | e3f4a1d | 2023-09-11 09:21:48 +0000 | [diff] [blame] | 1 | package { |
| 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 | |
| 10 | android_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 Pagani | e10140e | 2023-09-13 18:57:47 +0000 | [diff] [blame^] | 24 | "CredentialManagerShared", |
Gustavo Pagani | e3f4a1d | 2023-09-11 09:21:48 +0000 | [diff] [blame] | 25 | "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", |
| 35 | "androidx.core_core-ktx", |
| 36 | "androidx.lifecycle_lifecycle-extensions", |
| 37 | "androidx.lifecycle_lifecycle-livedata", |
| 38 | "androidx.lifecycle_lifecycle-runtime-ktx", |
| 39 | "androidx.lifecycle_lifecycle-viewmodel-compose", |
| 40 | "androidx.wear.compose_compose-foundation", |
| 41 | "androidx.wear.compose_compose-material", |
| 42 | "androidx.wear.compose_compose-navigation", |
| 43 | "kotlinx-coroutines-core", |
| 44 | ], |
| 45 | |
| 46 | platform_apis: true, |
| 47 | privileged: true, |
| 48 | |
| 49 | kotlincflags: ["-Xjvm-default=all"], |
| 50 | |
| 51 | optimize: { |
| 52 | proguard_compatibility: false, |
| 53 | }, |
| 54 | } |