Added init core

pull/152/head
M66B 6 years ago
parent eb3de5b7c5
commit a0edb817a7

@ -63,6 +63,7 @@ public class ApplicationEx extends Application {
createNotificationChannels();
MessageHelper.setSystemProperties();
Core.init(this);
}
private void createNotificationChannels() {

@ -94,6 +94,15 @@ class Core {
private static final int DOWNLOAD_BATCH_SIZE = 20;
private static final long YIELD_DURATION = 200L; // milliseconds
static void init(Context context) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editor editor = prefs.edit();
for (String key : prefs.getAll().keySet())
if (key.startsWith("notifying:"))
editor.remove(key);
editor.apply();
}
static void processOperations(
Context context,
EntityAccount account, EntityFolder folder,

Loading…
Cancel
Save