1package {
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// TODO: ag/24733147 - Remove this project once it is imported.
11android_library {
12    name: "Horologist",
13    manifest: "AndroidManifest.xml",
14    srcs: ["src/**/*.kt"],
15    static_libs: [
16        "androidx.compose.foundation_foundation",
17        "androidx.compose.runtime_runtime",
18        "androidx.compose.ui_ui",
19        "androidx.compose.ui_ui-tooling",
20        "androidx.navigation_navigation-compose",
21        "androidx.lifecycle_lifecycle-extensions",
22        "androidx.lifecycle_lifecycle-runtime-ktx",
23        "androidx.lifecycle_lifecycle-viewmodel-compose",
24        "androidx.wear.compose_compose-foundation",
25        "androidx.wear.compose_compose-material",
26        "androidx.wear.compose_compose-navigation",
27    ],
28}
29