1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5aidl_library { 6 name: "bluetooth_constants", 7 srcs: [ 8 "bluetooth/constants/AudioInputType.aidl", 9 "bluetooth/constants/aics/AudioInputStatus.aidl", 10 "bluetooth/constants/aics/GainMode.aidl", 11 "bluetooth/constants/aics/Mute.aidl", 12 ], 13 visibility: ["//packages/modules/Bluetooth:__subpackages__"], 14} 15 16// other java component doesn't know how to depend on an aidl_library 17java_library { 18 name: "bluetooth_constants_java", 19 srcs: [ 20 "bluetooth/constants/AudioInputType.aidl", 21 "bluetooth/constants/aics/AudioInputStatus.aidl", 22 "bluetooth/constants/aics/GainMode.aidl", 23 "bluetooth/constants/aics/Mute.aidl", 24 ], 25 apex_available: ["com.android.btservices"], 26 min_sdk_version: "Tiramisu", 27 sdk_version: "module_current", 28 visibility: ["//packages/modules/Bluetooth:__subpackages__"], 29} 30