summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
2be58d1)
API 32 (12L) was getting detected as HALIUM_13 which wouldn't work on
devices when official images ship with support for these newer versions.
ret = "MAINLINE"
if vndk_str != "":
vndk = int(vndk_str)
ret = "MAINLINE"
if vndk_str != "":
vndk = int(vndk_str)
+ if vndk > 31:
+ vndk -= 1 # 12L -> Halium 12
if vndk > 19:
ret = "HALIUM_" + str(vndk - 19)
if vndk > 19:
ret = "HALIUM_" + str(vndk - 19)