420f583758
This is needed because libaudiohal.so can only interact with one HAL version at a time (loading only one of the libaudiohal@version.so implementations), so only the interface that matches the stock HAL version will be used. libaudiohal decides which version to use by looking through the interfaces whose variant is `default` and picking the highest versioned one, so our hal will not interfere in the process (because we use `sysbta` as our variant).
18 lines
664 B
XML
18 lines
664 B
XML
<manifest version="1.0" type="framework">
|
|
<hal format="aidl">
|
|
<name>android.hardware.bluetooth.audio</name>
|
|
<version>2</version>
|
|
<fqname>IBluetoothAudioProviderFactory/sysbta</fqname>
|
|
</hal>
|
|
<hal>
|
|
<name>android.hardware.audio</name>
|
|
<transport>hwbinder</transport>
|
|
<fqname>@2.0::IDevicesFactory/sysbta</fqname>
|
|
<fqname>@4.0::IDevicesFactory/sysbta</fqname>
|
|
<fqname>@5.0::IDevicesFactory/sysbta</fqname>
|
|
<fqname>@6.0::IDevicesFactory/sysbta</fqname>
|
|
<fqname>@7.0::IDevicesFactory/sysbta</fqname>
|
|
<fqname>@7.1::IDevicesFactory/sysbta</fqname>
|
|
</hal>
|
|
</manifest>
|