1// This is the expected build file, but it may not be right in all cases 2 3package { 4 // See: http://go/android-license-faq 5 // A large-scale-change added 'default_applicable_licenses' to import 6 // all of the 'license_kinds' from "hardware_interfaces_license" 7 // to get the below license kinds: 8 // SPDX-license-identifier-Apache-2.0 9 default_applicable_licenses: ["hardware_interfaces_license"], 10} 11 12aidl_interface { 13 name: "android.hardware.automotive.audiocontrol", 14 vendor_available: true, 15 srcs: ["android/hardware/automotive/audiocontrol/*.aidl"], 16 imports: [ 17 "android.hardware.audio.common-V1", 18 "android.media.audio.common.types-V2", 19 ], 20 stability: "vintf", 21 backend: { 22 java: { 23 sdk_version: "module_current", 24 min_sdk_version: "31", 25 apex_available: [ 26 "//apex_available:platform", 27 "com.android.car.framework", 28 ], 29 }, 30 }, 31 versions_with_info: [ 32 { 33 version: "1", 34 imports: [ 35 "android.hardware.audio.common-V1", 36 "android.media.audio.common.types-V2", 37 ], 38 }, 39 { 40 version: "2", 41 imports: [ 42 "android.hardware.audio.common-V1", 43 "android.media.audio.common.types-V2", 44 ], 45 }, 46 { 47 version: "3", 48 imports: [ 49 "android.hardware.audio.common-V1", 50 "android.media.audio.common.types-V2", 51 ], 52 }, 53 54 ], 55 frozen: true, 56 57} 58