diff options
author | Jooyung Han <jooyung@google.com> | 2020-06-16 01:39:56 +0900 |
---|---|---|
committer | Jooyung Han <jooyung@google.com> | 2020-06-17 14:36:10 +0900 |
commit | 6c8a51c9f6c1dde862630128932e4f943dcc02c7 (patch) | |
tree | 756858e0a80795c91efe0507a6050002d11f9f7a /proto/Android.bp | |
parent | fb5e5063f3e86b54bde9fd78d75a2e3f2da0596f (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: I9b630aabff01eb1dd5dc4c0f14517e6d1a914126
Diffstat (limited to 'proto/Android.bp')
-rw-r--r-- | proto/Android.bp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/proto/Android.bp b/proto/Android.bp index 65bccbb4aac8..ac1b852abf55 100644 --- a/proto/Android.bp +++ b/proto/Android.bp @@ -26,4 +26,6 @@ java_library_static { }, srcs: ["src/metrics_constants/metrics_constants.proto"], sdk_version: "system_current", + // this is part of updatable modules(CaptivePortalLogin) which targets 29(Q) + min_sdk_version: "29", } |