I am trying to show an AlertDialog
from different thread. I received following crash on firebase:
android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.BinderProxy@415924 is not valid; is your activity running?
Tried to check if the context is active or not, but the issue still persists.
if(!((Activity)context).isFinishing()) {
alertDialog.show();
}