diff options
| author | Jooyung Han <jooyung@google.com> | 2020-04-16 18:48:33 +0900 |
|---|---|---|
| committer | Jooyung Han <jooyung@google.com> | 2020-04-29 03:46:51 +0900 |
| commit | e01d30242ca778449ce93e2be88dd07c2edb2c35 (patch) | |
| tree | bb614c04e50e5fc66415bae00682a5a99e5443aa | |
| parent | 1aa98e9db8ab19cd8ab3fc020621a8e3fe654ca6 (diff) | |
| download | platform_libnativehelper-e01d30242ca778449ce93e2be88dd07c2edb2c35.tar.gz platform_libnativehelper-e01d30242ca778449ce93e2be88dd07c2edb2c35.tar.bz2 platform_libnativehelper-e01d30242ca778449ce93e2be88dd07c2edb2c35.zip | |
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
Merged-In: I831bf9f87b520110b5460915e2d7c5814c1dba49
Change-Id: I831bf9f87b520110b5460915e2d7c5814c1dba49
(cherry picked from commit a727a250d76565202d5d57681acbab94e88f13ca)
| -rw-r--r-- | Android.bp | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -24,6 +24,8 @@ cc_library_headers { }, // The minimum sdk version required by users of this module. sdk_version: "minimum", + // As part of mainline modules(APEX), it should support at least 29(Q) + min_sdk_version: "29", } cc_library_headers { @@ -36,6 +38,8 @@ cc_library_headers { }, }, sdk_version: "current", + // As part of mainline modules(APEX), it should support at least 29(Q) + min_sdk_version: "29", } cc_library_headers { |
