Back to project page Gcal_Importer.
The source code is released under:
Apache License
If you think the Android project Gcal_Importer 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 net.crappo.android.androics; //from w ww .j a v a2s .com import android.app.Service; import android.content.Intent; import android.os.IBinder; /* * ???????????????Android???????????????????????? * ????TopActivity???????????????????????????????????????????? * ????????????????????Android???????????????????????????????????????????? */ public class AccountAuthService extends Service { private AndroIcsAuthenticator andAuthenticator = null; @Override public void onCreate() { super.onCreate(); andAuthenticator = new AndroIcsAuthenticator(this); } @Override public IBinder onBind(Intent intent) { return andAuthenticator.getIBinder(); } }