Back to project page RedditReader_Android_app.
The source code is released under:
MIT License
If you think the Android project RedditReader_Android_app 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.example.dawoon.redditreader.sync; //from w ww .j a v a2 s.c o m import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log; /** * Created by Dawoon on 2014-11-14. */ public class RedditSyncService extends Service { private static final Object sSyncAdapterLock = new Object(); private static RedditSyncAdapter sRedditSyncAdapter = null; @Override public void onCreate() { Log.d("RedditSyncService", "onCreate - RedditSyncService"); synchronized (sSyncAdapterLock) { if (sRedditSyncAdapter == null) { sRedditSyncAdapter = new RedditSyncAdapter(getApplicationContext(), true); } } } @Override public IBinder onBind(Intent intent) { return sRedditSyncAdapter.getSyncAdapterBinder(); } }