Back to project page timesync.
The source code is released under:
Apache License
If you think the Android project timesync 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 me.tatarka.timesync.app; /* w ww . j av a2 s. c o m*/ import android.app.Application; import me.tatarka.timesync.lib.TimeSync; public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); TimeSync.start(this); } }