diff options
author | Jooyung Han <jooyung@google.com> | 2020-04-29 02:43:03 +0900 |
---|---|---|
committer | Jooyung Han <jooyung@google.com> | 2020-05-13 07:14:02 +0000 |
commit | 9b1bf05e22279523d839eea9fdbfcf56847dd01a (patch) | |
tree | a88cc53ad5ada63c9cbd7800e7604c0b8b7916e9 | |
parent | a8a73c53199cc1bd01d59d022c1b235f964c0565 (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.
Exempt-From-Owner-Approval: cp from aosp
Bug: 152655956
Test: m
Merged-In: Idc4aa437c21ea1add95a709bf709a5dbe662b084
Change-Id: Idc4aa437c21ea1add95a709bf709a5dbe662b084
(cherry picked from commit d3fb9f5bb31766291e7f7e506cfb1a17b4c70d1c)
-rw-r--r-- | Android.bp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -220,7 +220,8 @@ cc_library_shared { srcs: [ "jni/network_stack_utils_jni.cpp" ], - sdk_version: "current", + sdk_version: "29", + min_sdk_version: "29", shared_libs: [ "liblog", "libnativehelper_compat_libc++", |