Skip to content
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.

Commit

Permalink
Fix platform 32 name
Browse files Browse the repository at this point in the history
T -> Sv2

Bug: 210480197
Test: N/A
Change-Id: I287b840c28e5ed080969425ef586b28122541933
  • Loading branch information
ruiqimao committed Feb 1, 2022
1 parent 04912a5 commit 70c1633
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdklib/src/main/java/com/android/sdklib/SdkVersionInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public static String getCodeName(int api) {
case 31:
return "S";
case 32:
return "T";
return "Sv2";
// If you add more versions here, also update #getBuildCodes and
// #HIGHEST_KNOWN_API

Expand Down Expand Up @@ -267,7 +267,7 @@ public static String getBuildCode(int api) {
case 30: return "R";
case 31: return "S";
case 32:
return "T";
return "Sv2";
// If you add more versions here, also update #getCodeName and
// #HIGHEST_KNOWN_API
}
Expand Down

0 comments on commit 70c1633

Please sign in to comment.