Call delete stacktrace files function off the main thread.

This commit is contained in:
Ammar Githam 2021-07-12 21:28:08 +09:00
parent b860493cc8
commit 0dc49ba273
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public final class FlavorTown {
settingsHelper.putString(Constants.APP_UA, appUa);
final String browserUa = UserAgentUtils.generateBrowserUA(browserUaCode);
settingsHelper.putString(Constants.BROWSER_UA, browserUa);
CrashReporterHelper.deleteAllStacktraceFiles(context);
AppExecutors.INSTANCE.getDiskIO().execute(() -> CrashReporterHelper.deleteAllStacktraceFiles(context));
Toast.makeText(context, R.string.updated, Toast.LENGTH_SHORT).show();
settingsHelper.putInteger(Constants.PREV_INSTALL_VERSION, BuildConfig.VERSION_CODE);
}