Bob Badour | e539dba | 2021-02-12 17:07:05 -0800 | [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 | |
Ahmad Khalil | 726d9a0 | 2023-04-10 22:20:32 +0000 | [diff] [blame^] | 10 | android_library { |
| 11 | name: "SoundPickerLib", |
| 12 | srcs: [ |
| 13 | "src/**/*.java", |
Jeff Sharkey | 8f18b2a | 2019-08-21 14:37:07 -0600 | [diff] [blame] | 14 | ], |
| 15 | resource_dirs: [ |
| 16 | "res", |
| 17 | ], |
Ahmad Khalil | 726d9a0 | 2023-04-10 22:20:32 +0000 | [diff] [blame^] | 18 | static_libs: [ |
| 19 | "androidx.appcompat_appcompat", |
Jeff Sharkey | 8f18b2a | 2019-08-21 14:37:07 -0600 | [diff] [blame] | 20 | ], |
Ahmad Khalil | 726d9a0 | 2023-04-10 22:20:32 +0000 | [diff] [blame^] | 21 | } |
Jeff Sharkey | 8f18b2a | 2019-08-21 14:37:07 -0600 | [diff] [blame] | 22 | |
Ahmad Khalil | 726d9a0 | 2023-04-10 22:20:32 +0000 | [diff] [blame^] | 23 | android_app { |
| 24 | name: "SoundPicker", |
| 25 | defaults: ["platform_app_defaults"], |
| 26 | manifest: "AndroidManifest.xml", |
| 27 | static_libs: ["SoundPickerLib"], |
Jeff Sharkey | 8f18b2a | 2019-08-21 14:37:07 -0600 | [diff] [blame] | 28 | platform_apis: true, |
| 29 | certificate: "media", |
| 30 | privileged: true, |
| 31 | } |