Skip to content

Commit

Permalink
Add Galaxy S3 Mini Value Edition
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Rummler committed Sep 24, 2017
1 parent f59bc40 commit 9c45e7c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ public class GooglePlayDevices {
"Galaxy S Duos3",
"Galaxy S3",
"Galaxy S3 Mini",
"Galaxy S3 Mini Value Edition",
"Galaxy S3 Neo",
"Galaxy S4",
"Galaxy S4 Mini",
Expand Down
18 changes: 18 additions & 0 deletions json/popular-devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -2825,6 +2825,24 @@
"codename": "goldenve3g",
"model": "GT-I8200L"
},
{
"manufacturer": "Samsung",
"market_name": "Galaxy S3 Mini Value Edition",
"codename": "goldenve3g",
"model": "GT-I8200N"
},
{
"manufacturer": "Samsung",
"market_name": "Galaxy S3 Mini Value Edition",
"codename": "goldenvess3g",
"model": "GT-I8200"
},
{
"manufacturer": "Samsung",
"market_name": "Galaxy S3 Mini Value Edition",
"codename": "goldenvess3g",
"model": "GT-I8200Q"
},
{
"manufacturer": "Samsung",
"market_name": "Galaxy S3 Neo",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1012,6 +1012,13 @@ public static String getDeviceName(String codename, String model, String fallbac
|| model.equals("SM-G730W8")))) {
return "Galaxy S3 Mini";
}
if ((codename != null && (codename.equals("goldenve3g")
|| codename.equals("goldenvess3g")))
|| (model != null && (model.equals("GT-I8200")
|| model.equals("GT-I8200N")
|| model.equals("GT-I8200Q")))) {
return "Galaxy S3 Mini Value Edition";
}
if ((codename != null && (codename.equals("s3ve3g")
|| codename.equals("s3ve3gdd")
|| codename.equals("s3ve3gds")
Expand Down

0 comments on commit 9c45e7c

Please sign in to comment.