mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Modules contributing mainline modules (APK/APEX) should set min_sdk_version as well as apex_available. For now setting min_sdk_version doesn't change build outputs. But build-time checks will be added soon. Bug: 152655956 Test: m Change-Id: Ie6912167932812afb6e5f1ef5325ce7997cd04ae
30 lines
623 B
Plaintext
30 lines
623 B
Plaintext
aidl_interface {
|
|
name: "android.hardware.common",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: true,
|
|
support_system_process: true,
|
|
},
|
|
srcs: [
|
|
"android/hardware/common/*.aidl",
|
|
],
|
|
stability: "vintf",
|
|
backend: {
|
|
java: {
|
|
enabled: false,
|
|
},
|
|
cpp: {
|
|
enabled: false,
|
|
},
|
|
ndk: {
|
|
apex_available: [
|
|
"//apex_available:platform",
|
|
"com.android.media.swcodec",
|
|
],
|
|
min_sdk_version: "29",
|
|
},
|
|
},
|
|
versions: ["1"],
|
|
}
|