blob: 51943fffb36d6ff019ab9c7a4422d6f700bb4c32 [file] [log] [blame]
Helen Qindb3645e2022-09-21 05:02:34 +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: "CredentialManager",
12 defaults: ["platform_app_defaults"],
13 certificate: "platform",
14 srcs: ["src/**/*.kt"],
15 resource_dirs: ["res"],
16
17 static_libs: [
18 "androidx.activity_activity-compose",
19 "androidx.appcompat_appcompat",
20 "androidx.compose.material_material",
21 "androidx.compose.runtime_runtime",
22 "androidx.compose.ui_ui",
23 "androidx.compose.ui_ui-tooling",
24 "androidx.core_core-ktx",
25 "androidx.lifecycle_lifecycle-extensions",
26 "androidx.lifecycle_lifecycle-livedata",
27 "androidx.lifecycle_lifecycle-runtime-ktx",
28 "androidx.lifecycle_lifecycle-viewmodel-compose",
Helen Qindb3645e2022-09-21 05:02:34 +000029 "androidx.recyclerview_recyclerview",
30 ],
31
32 platform_apis: true,
33
34 kotlincflags: ["-Xjvm-default=enable"],
35}