Browse Source

Update CrashReporter.java

legacy
Austin Huang 4 years ago
committed by GitHub
parent
commit
f5765da974
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/src/main/java/awaisomereport/CrashReporter.java

4
app/src/main/java/awaisomereport/CrashReporter.java

@ -41,7 +41,7 @@ public final class CrashReporter implements Thread.UncaughtExceptionHandler {
this.application = application; this.application = application;
// set your email(s) here to receive crash reports // set your email(s) here to receive crash reports
// this.email = "<email>"; // this.email = "<email>";
this.email = "[email protected]";
this.email = "[email protected]";
this.crashLogsZip = new File(application.getExternalCacheDir(), "crash_logs.zip"); this.crashLogsZip = new File(application.getExternalCacheDir(), "crash_logs.zip");
} }
@ -194,4 +194,4 @@ public final class CrashReporter implements Thread.UncaughtExceptionHandler {
if (BuildConfig.DEBUG) Log.e("AWAISKING_APP", "", e); if (BuildConfig.DEBUG) Log.e("AWAISKING_APP", "", e);
} }
} }
}
}
Loading…
Cancel
Save