Back to project page ghetto-unlock.
The source code is released under:
Apache License
If you think the Android project ghetto-unlock 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.nick.ghettounlock; // ww w . j ava2 s . c om import android.app.Application; public class GhettoApp extends Application { private static GhettoApp instance; @Override public void onCreate() { super.onCreate(); instance = this; } public static GhettoApp getInstance() { return instance; } }