blob: c8999fbcd271f51b4e9855bedf62d4d59b61c205 [file] [log] [blame]
Bob Badoure539dba2021-02-12 17:07:05 -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
Ahmad Khalil726d9a02023-04-10 22:20:32 +000010android_library {
11 name: "SoundPickerLib",
12 srcs: [
13 "src/**/*.java",
Jeff Sharkey8f18b2a2019-08-21 14:37:07 -060014 ],
15 resource_dirs: [
16 "res",
17 ],
Ahmad Khalil726d9a02023-04-10 22:20:32 +000018 static_libs: [
19 "androidx.appcompat_appcompat",
Ahmad Khalilfe6e6002023-05-03 17:15:18 +000020 "hilt_android",
21 "guava",
Jeff Sharkey8f18b2a2019-08-21 14:37:07 -060022 ],
Ahmad Khalil726d9a02023-04-10 22:20:32 +000023}
Jeff Sharkey8f18b2a2019-08-21 14:37:07 -060024
Ahmad Khalil726d9a02023-04-10 22:20:32 +000025android_app {
26 name: "SoundPicker",
27 defaults: ["platform_app_defaults"],
28 manifest: "AndroidManifest.xml",
29 static_libs: ["SoundPickerLib"],
Jeff Sharkey8f18b2a2019-08-21 14:37:07 -060030 platform_apis: true,
31 certificate: "media",
32 privileged: true,
33}