diff options
author | 2023-02-25 00:14:44 +0000 | |
---|---|---|
committer | 2023-02-25 02:52:56 +0000 | |
commit | 8f419fc8879c7b4bff8fd75f9b8f7e52d704c1df (patch) | |
tree | f804f27163406505b0c4849fa2a85c5bc91cd57a /packages/AppPredictionLib | |
parent | 49f323d997aa4bc436ebb0419f3e61eef16e5208 (diff) |
min_sdk_version should be (level) and not (kind+level).
system_current is only meaningful to sdk_version. min_sdk_version should
provide information about the version of the device and not the
api surface the jar file was compiled against
Test: no change in ninja file
Bug: 208456999
Change-Id: I6bf4e855032b41d0da44b672168eb3a681abefa0
Diffstat (limited to 'packages/AppPredictionLib')
-rw-r--r-- | packages/AppPredictionLib/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/AppPredictionLib/Android.bp b/packages/AppPredictionLib/Android.bp index 5a68fdc9ae75..31c193631602 100644 --- a/packages/AppPredictionLib/Android.bp +++ b/packages/AppPredictionLib/Android.bp @@ -25,7 +25,7 @@ android_library { name: "app_prediction", sdk_version: "system_current", - min_sdk_version: "system_current", + min_sdk_version: "current", srcs: [ "src/**/*.java", |