mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-06 12:47:03 +01:00
feat: introduce SDK_S_V2 (#2780)
This commit is contained in:
parent
adc9425a9a
commit
31af56a430
@ -664,8 +664,10 @@ final public class AndrolibResources {
|
||||
return ResConfigFlags.SDK_R;
|
||||
case "S":
|
||||
return ResConfigFlags.SDK_S;
|
||||
case "SV2":
|
||||
return ResConfigFlags.SDK_S_V2;
|
||||
case "T":
|
||||
case "Tiramisu":
|
||||
case "TIRAMISU":
|
||||
return ResConfigFlags.SDK_DEVELOPMENT;
|
||||
default:
|
||||
return Integer.parseInt(sdkVersion);
|
||||
|
@ -537,7 +537,8 @@ public class ResConfigFlags {
|
||||
public final static byte SDK_Q = 29;
|
||||
public final static byte SDK_R = 30;
|
||||
public final static byte SDK_S = 31;
|
||||
public final static byte SDK_T = 32;
|
||||
public final static byte SDK_S_V2 = 32;
|
||||
public final static byte SDK_T = 33;
|
||||
|
||||
// AOSP has this as 10,000 for dev purposes.
|
||||
// platform_frameworks_base/commit/c7a1109a1fe0771d4c9b572dcf178e2779fc4f2d
|
||||
|
Loading…
Reference in New Issue
Block a user