Unable to dismiss instabug dialog

How to dismiss instabug dialog i tried many ways but every times my script quite.
it will dismiss by click any where on the screen but i tried to click any where the screen it quite.

tried with :
driver.switchTo().alert().accept();
or
capabilities.setCapability(“autoAcceptAlerts”,true);
or
driver.tap(1,34,100,1000);
Please suggest me how to do it , i already spent more time in it.

what about:

((AndroidDriver) driver).pressKeyCode(AndroidKeyCode.BACK);

Thanks @aleksel now its work with androidkeycode :slight_smile: