Back to project page sunshineApp.
The source code is released under:
Apache License
If you think the Android project sunshineApp 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.iyedb.sunshine.sync; /*w ww . jav a 2 s .c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log; /** * Created by iyed on 31/08/2014. */ public class SunshineSyncService extends Service { private static final Object sSyncAdapterLock = new Object(); private static SunshineSyncAdapter sSunshineSyncAdapter = null; @Override public void onCreate() { Log.d("SunshineSyncService", "onCreate - SunshineSyncService"); synchronized (sSyncAdapterLock) { if (sSunshineSyncAdapter == null) { sSunshineSyncAdapter = new SunshineSyncAdapter(getApplicationContext(), true); } } } @Override public IBinder onBind(Intent intent) { return sSunshineSyncAdapter.getSyncAdapterBinder(); } }