Back to project page client-android.
The source code is released under:
Apache License
If you think the Android project client-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.qmonix.sdk.utils; /*from w w w .ja v a 2s .co m*/ /** * This class has some static members that are often used. */ public class Utils { /** * Returns current time in Unix time format. It is the number of seconds that have elapsed * since midnight Coordinated Universal Time (UTC), 1 January 1970. * * @return unix time. */ public static long getUnixTime(){ return System.currentTimeMillis() / 1000; } }