expiry time of otp android

Solutions on MaxInterview for expiry time of otp android by the best coders in the world

showing results for - "expiry time of otp android"
Fernando
04 Sep 2020
1new CountDownTimer(90000, 1000) {
2 public void onTick(long millisUntilFinished) {
3     Log.d("seconds remaining: " , millisUntilFinished / 1000);
4 }
5
6 public void onFinish() {
7     // Called after timer finishes
8 }
9}.start();