Report all crashes when not a Play store install

This commit is contained in:
M66B 2018-09-18 08:28:51 +00:00
parent a394e1e03b
commit 0ae3d52480
1 changed files with 5 additions and 0 deletions

View File

@ -86,8 +86,13 @@ public class ApplicationEx extends Application {
public boolean ownFault(Throwable ex) {
if (ex instanceof OutOfMemoryError)
return false;
if (ex instanceof RemoteException)
return false;
if (!Helper.isPlayStoreInstall(this))
return true;
while (ex != null) {
for (StackTraceElement ste : ex.getStackTrace())
if (ste.getClassName().startsWith(getPackageName()))