Skip to content

Commit

Permalink
feat: introduce SDK_S_V2 (#2780)
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches committed Mar 13, 2022
1 parent adc9425 commit 31af56a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,10 @@ private int mapSdkShorthandToVersion(String sdkVersion) {
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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,8 @@ public int hashCode() {
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
Expand Down

0 comments on commit 31af56a

Please sign in to comment.