Helen Qin | db3645e | 2022-09-21 05:02:34 +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: "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", |
| 29 | "androidx.navigation_navigation-compose", |
| 30 | "androidx.recyclerview_recyclerview", |
| 31 | ], |
| 32 | |
| 33 | platform_apis: true, |
| 34 | |
| 35 | kotlincflags: ["-Xjvm-default=enable"], |
| 36 | } |