Back to project page SipgateInfo.
The source code is released under:
GNU General Public License
If you think the Android project SipgateInfo 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.skweez.sipgate; //www . j a v a 2s . c o m import java.net.Authenticator; import android.app.Application; import android.preference.PreferenceManager; /** * * @author mks * @author $Author: mks $ * @version $Rev: 9 $ * @levd.rating RED Rev: */ public class SipgateApplication extends Application { /** {@inheritDoc} */ @Override public void onCreate() { super.onCreate(); Authenticator.setDefault(new PreferencesAuthenticator(PreferenceManager .getDefaultSharedPreferences(this))); } }