Report all crashes when not a Play store install

pull/145/head
M66B 6 years ago
parent a394e1e03b
commit 0ae3d52480

@ -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()))

Loading…
Cancel
Save