1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
package {
default_applicable_licenses: ["hardware_interfaces_license"],
}
apex_key {
name: "com.android.hardware.vibrator.key",
public_key: "com.android.hardware.vibrator.avbpubkey",
private_key: "com.android.hardware.vibrator.pem",
}
android_app_certificate {
name: "com.android.hardware.vibrator.certificate",
certificate: "com.android.hardware.vibrator",
}
prebuilt_etc {
name: "com.android.hardware.vibrator.rc",
src: "com.android.hardware.vibrator.rc",
installable: false,
}
apex {
name: "com.android.hardware.vibrator",
manifest: "apex_manifest.json",
key: "com.android.hardware.vibrator.key",
certificate: ":com.android.hardware.vibrator.certificate",
file_contexts: "file_contexts",
use_vndk_as_stable: true,
updatable: false,
// Install the apex in /vendor/apex
soc_specific: true,
binaries: [
"android.hardware.vibrator-service.example",
],
prebuilts: [
"com.android.hardware.vibrator.rc",
],
vintf_fragments: [":android.hardware.vibrator.xml"],
// vibrator.default.so is not needed by the AIDL service binary.
overrides: ["vibrator.default"],
}
|