Skip to content

Commit

Permalink
Merge pull request #191 from SecUSo/190-increase-phone-number-length-…
Browse files Browse the repository at this point in the history
…limit

Increase phone number length limit
  • Loading branch information
udenr authored Nov 10, 2023
2 parents 64370b6 + a825295 commit 738cf68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected void onCreate(Bundle savedInstanceState) {

final EditText qrResult = (EditText) findViewById(R.id.editPhone);

int maxLength = 15;
int maxLength = 75;
qrResult.setFilters(new InputFilter[]{new InputFilter.LengthFilter(maxLength)});

ExtendedFloatingActionButton generate = (ExtendedFloatingActionButton) findViewById(R.id.btnGenerate);
Expand Down

0 comments on commit 738cf68

Please sign in to comment.