We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 260424b + 6673cf4 commit ded0c8cCopy full SHA for ded0c8c
1 file changed
src/src/com/tns/ErrorReportActivity.java
@@ -9,4 +9,12 @@ public void onCreate(Bundle savedInstanceState) {
9
super.onCreate(savedInstanceState);
10
new ErrorReport(this).buildUI();
11
}
12
+
13
+ @Override
14
+ protected void onPause()
15
+ {
16
+ //the moment the error activity is not in the foreground we want to kill the process
17
+ super.onPause();
18
+ ErrorReport.killProcess(this);
19
+ }
20
0 commit comments