20 lines
340 B
Java
20 lines
340 B
Java
package acr.browser.lightning;
|
|
|
|
import android.app.Application;
|
|
import android.content.Context;
|
|
|
|
public class BrowserApp extends Application {
|
|
|
|
private static Context context;
|
|
|
|
@Override
|
|
public void onCreate() {
|
|
super.onCreate();
|
|
context = getApplicationContext();
|
|
}
|
|
|
|
public static Context getAppContext() {
|
|
return context;
|
|
}
|
|
}
|