Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d5f27309 authored by Jooyung Han's avatar Jooyung Han
Browse files

Set min_sdk_version to be part of mainline modules

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: Ifb9e0d4cd57a0e8212341cf493cd9fb20d0e264c
parent 06f0f469
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -4,6 +4,14 @@ cc_library_headers {
    export_include_dirs: ["./"],
    export_include_dirs: ["./"],
    vendor_available: true,
    vendor_available: true,
    host_supported: true,
    host_supported: true,
    apex_available: [
        "//apex_available:platform",
        "com.android.media",
        "com.android.media.swcodec",
        "com.android.bluetooth.updatable"
    ],
    // As part of updatable mainline modules(media, swcodec), it should support at least 29(Q)
    min_sdk_version: "29",
}
}


cc_library_static {
cc_library_static {