blob: 41de29a93e511ccde2453c9575d52f33e2e087be [file] [log] [blame]
Mill Chen5f804ca2021-10-26 12:04:06 +08001package {
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_library {
11 name: "SettingsLibActivityEmbedding",
Peter Kalauskas84c5a992023-08-23 13:39:23 -070012 use_resource_processor: true,
Mill Chen5f804ca2021-10-26 12:04:06 +080013
14 srcs: ["src/**/*.java"],
15
16 static_libs: [
17 "androidx.annotation_annotation",
Tsung-Mao Fang5641d012022-02-11 22:10:43 +080018 "androidx.core_core",
Diego Vela8e00e4862022-04-07 13:14:51 -070019 "androidx.window_window",
Mill Chen5f804ca2021-10-26 12:04:06 +080020 "SettingsLibUtils",
21 ],
22 sdk_version: "system_current",
23 min_sdk_version: "21",
Diego Vela8e00e4862022-04-07 13:14:51 -070024 // TODO(b/228508619) Remove the optional uses after fixing upstream
25 optional_uses_libs: [
26 "org.apache.http.legacy",
27 "androidx.window.extensions",
28 "androidx.window.sidecar",
29 ],
Simon Wingrovea4156b62022-10-14 11:45:56 +010030
31 apex_available: [
32 "//apex_available:platform",
33 "com.android.permission",
ronishfc97db52023-02-07 17:57:48 +000034 "com.android.healthfitness",
Simon Wingrovea4156b62022-10-14 11:45:56 +010035 ],
Mill Chen5f804ca2021-10-26 12:04:06 +080036}