My app is working well for users submitting their jobs e.g. check in/out job. The problem is end users can physically alter their device time and provide false check in and out times.
However the time from the internet doesn't work in the sense that users are not always online therefore am looking for alternative times that I can use
last_Check_in.check_out = System.currentTimeMillis();
// this can easily be manipulated if a user changes time in settings
I expect a time e.g. gps time which works offline and can't be manipulated.