I want to check internet connection in Broadcast Receiver; And set result (A boolean flag) to a global variable, to use it on whole application, in if conditions; That if in
You can access your Application class in BroadCastReceiver by using its context,
Application
BroadCastReceiver
@Override public void onReceive(final Context context, Intent intent) { MyApplication mApplication = ((MyApplication)context.getApplicationContext()); }