1package {
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 "hardware_interfaces_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
10aidl_interface {
11    name: "android.hardware.biometrics.fingerprint",
12    vendor_available: true,
13    srcs: [
14        "android/hardware/biometrics/fingerprint/**/*.aidl",
15    ],
16    imports: [
17        "android.hardware.biometrics.common-V4",
18        "android.hardware.keymaster-V4",
19    ],
20    stability: "vintf",
21    backend: {
22        java: {
23            platform_apis: true,
24        },
25        cpp: {
26            enabled: false,
27        },
28    },
29    versions_with_info: [
30        {
31            version: "1",
32            imports: [
33                "android.hardware.biometrics.common-V1",
34                "android.hardware.keymaster-V3",
35            ],
36        },
37        {
38            version: "2",
39            imports: [
40                "android.hardware.biometrics.common-V2",
41                "android.hardware.keymaster-V3",
42            ],
43        },
44        {
45            version: "3",
46            imports: [
47                "android.hardware.biometrics.common-V3",
48                "android.hardware.keymaster-V4",
49            ],
50        },
51        {
52            version: "4",
53            imports: [
54                "android.hardware.biometrics.common-V4",
55                "android.hardware.keymaster-V4",
56            ],
57        },
58
59    ],
60    frozen: false,
61}
62