Send crash reports when debug version only

This commit is contained in:
M66B 2016-05-14 17:50:38 +02:00
parent f7d216be48
commit 2fc55d0944
1 changed files with 2 additions and 0 deletions

View File

@ -571,6 +571,8 @@ public class Util {
public static void sendCrashReport(Throwable ex, final Context context) {
if (!isPlayStoreInstall(context))
return;
if (!(Util.isDebuggable(context) || Util.getSelfVersionName(context).contains("beta")))
return;
try {
ApplicationErrorReport report = new ApplicationErrorReport();