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; /* ww w .j a va2 s .c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; /** * Created by iyed on 31/08/2014. */ public class SunshineAuthenticatorService extends Service { private SunshineAuthenticator mAuthenticator; @Override public void onCreate() { mAuthenticator = new SunshineAuthenticator(this); } @Override public IBinder onBind(Intent intent) { return mAuthenticator.getIBinder(); } }