summaryrefslogtreecommitdiff
path: root/bluetooth/ext/aidl/Android.bp
blob: 00debbbec4263a4bf191dcd51367f0689a01aeb3 (plain)
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
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["Android-Apache-2.0"],
}

aidl_interface {
    name: "hardware.google.bluetooth.ext",
    owner: "google",
    vendor_available: true,
    srcs: [
        "hardware/google/bluetooth/ext/IBluetoothExt.aidl",
    ],
    stability: "vintf",

    backend: {
        cpp: {
            enabled: true,
        },
        java: {
            platform_apis: true,
        },
        ndk: {
            apex_available: [
                "//apex_available:platform",
                "com.android.btservices",
            ],
            min_sdk_version: "33",
        },
    },
}