package me.bell.downapp;
import android.app.Application;
import android.content.Context;
/**
* @Info
* @Auth Bello
* @Time 18/5/5 下午12:41
* @Ver
*/
public class App extends Application {
private static Context context;
@Override
public void onCreate() {
super.onCreate();
context = getApplicationContext();
}
public static Context getContext(){
return context;
}
}