Back to project page Android-Apps.
The source code is released under:
Apache License
If you think the Android project Android-Apps 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.kniezrec.xbmcgear.connection; /*w ww .j a v a 2s .co m*/ import android.app.Application; public class AndroidApplication extends Application { private static AndroidApplication sInstance; public static AndroidApplication getInstance() { return sInstance; } @Override public void onCreate() { super.onCreate(); sInstance = this; } }