mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
- with defaults user don't have to change their Android.bp when there is a update - update AIDL audio interfaces with android.media.audio.common.types - update Spatialization and HeadTracking AIDL usage Bug: 273373363 Bug: 293370815 Test: m Change-Id: Ic9d8afc1d4e19e4243c66065b0a5d29156632851
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
aidl_interface {
|
|
name: "android.hardware.common",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: true,
|
|
support_system_process: true,
|
|
},
|
|
vndk_use_version: "2",
|
|
srcs: [
|
|
"android/hardware/common/*.aidl",
|
|
],
|
|
stability: "vintf",
|
|
backend: {
|
|
java: {
|
|
sdk_version: "module_current",
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
ndk: {
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.btservices",
|
|
"com.android.media.swcodec",
|
|
"com.android.neuralnetworks",
|
|
],
|
|
min_sdk_version: "29",
|
|
},
|
|
rust: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
frozen: true,
|
|
versions: [
|
|
"1",
|
|
"2",
|
|
],
|
|
}
|