Skip to content

Instantly share code, notes, and snippets.

@robUx4
Last active December 20, 2015 05:29
Show Gist options
  • Save robUx4/6078383 to your computer and use it in GitHub Desktop.
Save robUx4/6078383 to your computer and use it in GitHub Desktop.
static Context
public final class Touiteur extends Application {
private static Touiteur mApp;
@Override
public void onCreate() {
super.onCreate();
if (null != mApp) throw new NullPointerException("The application is launched twice ?! this:"+this+"/"+mApp);
mApp = this;
}
public static Touiteur getInstance() {
return mApp;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment