blob: a33b2bee78d9ec7af4dcbab80700beb16f7b11e6 [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",
Jeff Sharkey8f18b2a2019-08-21 14:37:07 -060020 ],
Ahmad Khalil726d9a02023-04-10 22:20:32 +000021}
Jeff Sharkey8f18b2a2019-08-21 14:37:07 -060022
Ahmad Khalil726d9a02023-04-10 22:20:32 +000023android_app {
24 name: "SoundPicker",
25 defaults: ["platform_app_defaults"],
26 manifest: "AndroidManifest.xml",
27 static_libs: ["SoundPickerLib"],
Jeff Sharkey8f18b2a2019-08-21 14:37:07 -060028 platform_apis: true,
29 certificate: "media",
30 privileged: true,
31}