Skip to content

Commit

Permalink
Updated based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Nov 27, 2023
1 parent fc65d7b commit c2d743f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ android {
}
applicationVariants.all { variant ->
variant.resValue "string", "APP_ID", "\"${applicationId}\""
// TODO(aanorbel): Use similar solution to set `APP_NAME` in the format `brand` `testing`.
}
variantFilter { variant ->
def names = variant.flavors*.name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public String getSettingsLanguage() {
if (language.equals("auto")) {
language = Locale.getDefault().getLanguage();
}
if (new ArrayList<>(Arrays.asList(r.getStringArray(R.array.language_sort_options_values))).contains(language)) {
if (Arrays.asList(r.getStringArray(R.array.language_sort_options_values)).contains(language)) {
return language;
}
return "en";
Expand Down

0 comments on commit c2d743f

Please sign in to comment.