diff options
author | Jooyung Han <jooyung@google.com> | 2020-05-21 22:46:03 +0900 |
---|---|---|
committer | Jooyung Han <jooyung@google.com> | 2020-05-21 22:58:23 +0900 |
commit | 350467dac3a481d2f6b485e662c34bbb74016a52 (patch) | |
tree | d8c0a497f75c3fe5a4f9fb34285469f59adad3e7 /common | |
parent | c669b6bd899f6c8aea9771de9a1ddc03d073d7de (diff) |
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: Ie6912167932812afb6e5f1ef5325ce7997cd04ae
Diffstat (limited to 'common')
-rw-r--r-- | common/aidl/Android.bp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/aidl/Android.bp b/common/aidl/Android.bp index 0731230412..9ea4cdf5c1 100644 --- a/common/aidl/Android.bp +++ b/common/aidl/Android.bp @@ -17,6 +17,13 @@ aidl_interface { cpp: { enabled: false, }, + ndk: { + apex_available: [ + "//apex_available:platform", + "com.android.media.swcodec", + ], + min_sdk_version: "29", + }, }, versions: ["1"], } |