20 lines
340 B
Java
Raw Normal View History

package acr.browser.lightning;
import android.app.Application;
2014-07-09 10:43:01 +02:00
import android.content.Context;
public class BrowserApp extends Application {
2014-07-09 10:43:01 +02:00
private static Context context;
2014-07-25 19:31:33 +02:00
@Override
2014-07-09 10:43:01 +02:00
public void onCreate() {
super.onCreate();
context = getApplicationContext();
}
public static Context getAppContext() {
return context;
}
}