Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリが停止したなどのエラー ウィンドウを非表示にするにはどうすればよいですか? または、これを実行できるxposedモジュールはありますか?
誰にもこれを行うことはお勧めしませんが、すべてのコードを try ブロック内に配置し、エラーをキャッチしてアプリを閉じることができます。例えば:
try { //all your code } catch(Exception ex) { finish(); }