diff options
author | Jooyung Han <jooyung@google.com> | 2020-05-13 16:55:10 +0900 |
---|---|---|
committer | Jooyung Han <jooyung@google.com> | 2020-05-13 16:55:10 +0900 |
commit | 1beacd440b86a35fcd83bb47ee62ffaa1b1de9ed (patch) | |
tree | 10dcb6624010d968b165606ae8570ad3088d1771 | |
parent | 960b8ed0cdfc3bdfa1edcc9ef4513fe6ffd0d7e4 (diff) |
libc_scudo: Set min_sdk_version to apex_inherit
Switched min_sdk_version from 29(hard-coded) to "apex_inherit".
From the build system perspective, nothing changes.
This change is to sync with internal code because it's been changed
while cherry-picking.
Bug: 145796956
Test: m
Change-Id: I567ddad0bd54087cdf9a30cbe42e239977a028dd
-rw-r--r-- | libc/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/Android.bp b/libc/Android.bp index 761478451..31767ef85 100644 --- a/libc/Android.bp +++ b/libc/Android.bp @@ -2548,7 +2548,7 @@ cc_library_shared { "//apex_available:platform", "com.android.media.swcodec", ], - min_sdk_version: "29", + min_sdk_version: "apex_inherit", } subdirs = [ |