diff options
author | 2023-03-03 21:20:36 +0000 | |
---|---|---|
committer | 2023-03-22 20:15:45 +0000 | |
commit | 8c9ae7ed6770b45f1337722a2e61cb22317659aa (patch) | |
tree | 2d1b882fed5c5a6291ae685cbd268ed1c8c17bc0 /java/hiddenapi_modular.go | |
parent | 7947b31a5577c3bb6dbcffb808dc8f71904249c5 (diff) |
Update min_sdk_version from SdkSpec to ApiLevel
This relands aosp/2457063. The original change broke T and U since those
branches still contain soong modules of type (kind+level). Those soong
modules have been cleaned up now
Test: Used go/abtd to test T and U branches with this change
Bug: 208456999
Change-Id: I0ef7933c055f88cb512a02108f1173e51156ef1c
Diffstat (limited to 'java/hiddenapi_modular.go')
-rw-r--r-- | java/hiddenapi_modular.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/hiddenapi_modular.go b/java/hiddenapi_modular.go index e2db0cd6b..c6176e67c 100644 --- a/java/hiddenapi_modular.go +++ b/java/hiddenapi_modular.go @@ -1278,7 +1278,7 @@ type bootDexInfo struct { uncompressDex bool // The minimum sdk version that the dex jar will be used on. - minSdkVersion android.SdkSpec + minSdkVersion android.ApiLevel } // bootDexInfoByModule is a map from module name (as returned by module.Name()) to the boot dex |