Back to project page savemypics.
The source code is released under:
Copyright (c) 2014, KB Sriram All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. R...
If you think the Android project savemypics 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 org.savemypics.android.authenticator; /*from w w w .j ava2s . c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; public class CAuthenticationService extends Service { @Override public void onCreate() { m_auth = new CAuthenticator(this); } @Override public void onDestroy() { m_auth = null; } @Override public IBinder onBind(Intent intent) { return m_auth.getIBinder(); } private CAuthenticator m_auth = null; }