1package {
2    default_team: "trendy_team_haptics_framework",
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "hardware_interfaces_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["hardware_interfaces_license"],
9}
10
11aidl_interface {
12    name: "android.hardware.vibrator",
13    vendor_available: true,
14    host_supported: true,
15    srcs: [
16        "android/hardware/vibrator/*.aidl",
17    ],
18    stability: "vintf",
19    backend: {
20        java: {
21            sdk_version: "system_current",
22        },
23    },
24    versions: [
25        "1",
26        "2",
27    ],
28}
29