mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
This change allows the framework to depend on biometric AIDL types, for example: `android.hardware.keymaster.HardwareAuthToken`. The dependency can be introduced with a `-java-source` target, for example: `:android.hardware.keymaster-V4-java-source`. The "@hide" annotation informs Metalava that these types are not a public API (not part of the SDK). Bug: 218388821 Test: m android.hardware.keymaster-update-api Change-Id: I0da555645f1548ad7124732236054f6e408c43e5
37 lines
853 B
Plaintext
37 lines
853 B
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.keymaster",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"android/hardware/keymaster/*.aidl",
|
|
],
|
|
stability: "vintf",
|
|
backend: {
|
|
java: {
|
|
platform_apis: true,
|
|
},
|
|
},
|
|
versions_with_info: [
|
|
{
|
|
version: "1",
|
|
imports: [],
|
|
},
|
|
{
|
|
version: "2",
|
|
imports: [],
|
|
},
|
|
{
|
|
version: "3",
|
|
imports: [],
|
|
},
|
|
],
|
|
}
|