Search code examples
androidunix-timestamp

How do I create a Unix timestamp on Android?


How do I create a Unix timestamp on Android?

I want to create a URL post request with a Unix timestamp on the end of the url.


Solution

  •  long unixTime = System.currentTimeMillis() / 1000L;