-2

How can i hide the error window that says app has stopped etc..? Or is there any xposed module that can do this?

1 Answers1

0

I do NOT recommend anyone do this, but you could put all of your code within a try block, and upon catching an error close the app. For example:

try
{
    //all your code
}
catch(Exception ex)
{
    finish();
}
Luke Needham
  • 3,373
  • 1
  • 24
  • 41