Skip to content

Commit

Permalink
add Pixel 4a 5G support
Browse files Browse the repository at this point in the history
  • Loading branch information
thestinger committed Feb 12, 2021
1 parent 3e02c85 commit a72ba0d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ private enum Stage {
"Pixel 4",
"Pixel 4 XL",
"Pixel 4a",
"Pixel 4a (5G)",
"POCOPHONE F1",
"POT-LX3",
"REVVL 2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ private static class DeviceInfo {
"Pixel 4",
"Pixel 4 XL",
"Pixel 4a",
"Pixel 4a (5G)",
"SM-N970U",
"SM-N975U").contains(Build.MODEL);

Expand Down Expand Up @@ -344,6 +345,8 @@ private static class DeviceInfo {
new DeviceInfo(R.string.device_pixel_4_generic, 3, 4, false /* uses new API */, true, R.string.os_stock))
.put("879CD3F18EA76E244D4D4AC3BCB9C337C13B4667190B19035AFE2536550050F1",
new DeviceInfo(R.string.device_pixel_4a, 3, 4, false /* uses new API */, true, R.string.os_stock))
.put("88265D85BA9E1E2F6036A259D880D2741031ACA445840137395B6D541C0FC7FC",
new DeviceInfo(R.string.device_pixel_4a_5g, 3, 4, false /* uses new API */, true, R.string.os_stock))
.put("72376CAACF11726D4922585732429FB97D0D1DD69F0D2E0770B9E61D14ADDE65",
new DeviceInfo(R.string.device_sm_a705fn, 3, 4, false /* uses new API */, true, R.string.os_stock))
.put("33D9484FD512E610BCF00C502827F3D55A415088F276C6506657215E622FA770",
Expand Down Expand Up @@ -462,6 +465,8 @@ private static class DeviceInfo {
new DeviceInfo(R.string.device_pixel_4_generic, 3, 4, false /* uses new API */, true, R.string.os_stock))
.put("879CD3F18EA76E244D4D4AC3BCB9C337C13B4667190B19035AFE2536550050F1",
new DeviceInfo(R.string.device_pixel_4a, 3, 4, false /* uses new API */, true, R.string.os_stock))
.put("88265D85BA9E1E2F6036A259D880D2741031ACA445840137395B6D541C0FC7FC",
new DeviceInfo(R.string.device_pixel_4a_5g, 4, 41, false /* uses new API */, true, R.string.os_stock))
.put("3D3DEB132A89551D0A700D230BABAE4E3E80E3C7926ACDD7BAEDF9B57AD316D0",
new DeviceInfo(R.string.device_sm_n970u, 3, 4, false /* uses new API */, true, R.string.os_stock))
.put("9AC63842137D92C119A1B1BE2C9270B9EBB6083BBE6350B7823571942B5869F0",
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
<string name="device_pixel_4">Google Pixel 4</string>
<string name="device_pixel_4_xl">Google Pixel 4 XL</string>
<string name="device_pixel_4a">Google Pixel 4a</string>
<string name="device_pixel_4a_5g">Google Pixel 4a 5G</string>
<string name="device_sm_a705fn">Samsung Galaxy A70 (SM-A705FN)</string>
<string name="device_sm_g960f">Samsung Galaxy S9 (SM-G960F)</string>
<string name="device_sm_g960_na">Samsung Galaxy S9 USA/Canada (SM-G960U/SM-G960U1/SM-G960W)</string>
Expand Down

0 comments on commit a72ba0d

Please sign in to comment.