Consider the following advice...
Detect the following:
long time = new Date().getTime();
and recommend the following:
long time = System.currentTimeMillis();
Log in to post a comment.