• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.identity",
12    vendor_available: true,
13    srcs: [
14        "android/hardware/identity/*.aidl",
15    ],
16    imports: [
17        "android.hardware.keymaster",
18        "android.hardware.security.keymint",
19    ],
20    stability: "vintf",
21    backend: {
22        java: {
23            platform_apis: true,
24        },
25        ndk: {
26            vndk: {
27                enabled: true,
28            },
29            apps_enabled: false,
30        },
31    },
32    versions_with_info: [
33        {
34            version: "1",
35            imports: [
36                "android.hardware.keymaster-V3",
37                "android.hardware.security.keymint-V1",
38            ],
39        },
40        {
41            version: "2",
42            imports: [
43                "android.hardware.keymaster-V3",
44                "android.hardware.security.keymint-V1",
45            ],
46        },
47        {
48            version: "3",
49            imports: [
50                "android.hardware.keymaster-V3",
51                "android.hardware.security.keymint-V1",
52            ],
53        },
54        {
55            version: "4",
56            imports: [
57                "android.hardware.keymaster-V3",
58                "android.hardware.security.keymint-V2",
59            ],
60        },
61
62    ],
63
64}
65