Back to project page Tiny-Journal.
The source code is released under:
GNU General Public License
If you think the Android project Tiny-Journal 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.ubergrund.android.tinyjournal; /*from ww w. j a va2 s .c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; /** * Created with IntelliJ IDEA. * User: Tim * Date: 10/28/13 * Time: 7:46 AM */ public class AuthenticatorService extends Service { private JournalAuthenticator authenticator; @Override public void onCreate() { super.onCreate(); authenticator = new JournalAuthenticator(this); } public IBinder onBind(Intent intent) { return authenticator.getIBinder(); } }