mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-05-25 19:56:09 +02:00
466 B
466 B
AIDL Interfaces
You declare the API of your service using an AIDL interface:
birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl:
{{#include birthday_service/aidl/com/example/birthdayservice/IBirthdayService.aidl:IBirthdayService}}
birthday_service/aidl/Android.bp:
{{#include birthday_service/aidl/Android.bp}}
Add vendor_available: true
if your AIDL file is used by a binary in the vendor
partition.