Skip to content

Commit

Permalink
Add the API level to the device label.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuetschard committed Dec 20, 2018
1 parent 02cf9ee commit a3c29e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gapic/src/main/com/google/gapid/models/Devices.java
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,9 @@ private static StringBuilder appendOsLabel(StringBuilder sb, Device.OS os) {
if (!os.getName().isEmpty()) {
sb.append(" ").append(os.getName());
}
if (os.getAPIVersion() != 0) {
sb.append(" API ").append(os.getAPIVersion());
}
return sb;
}

Expand Down

0 comments on commit a3c29e9

Please sign in to comment.