summaryrefslogtreecommitdiff
path: root/core/src/free
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2019-12-12 09:39:40 +0100
committerByteHamster <info@bytehamster.com>2019-12-12 09:41:35 +0100
commit29f468b332e78ff2ecb35ec704297cfc8fcd828f (patch)
tree03fb7814179d7cd031fd1cf38daaf59382e8aefa /core/src/free
parenta99a41e3bb429632ecb0b28ef3d9d0dbbad826f9 (diff)
downloadAntennaPod-29f468b332e78ff2ecb35ec704297cfc8fcd828f.zip
Make sure to create notification channels
Diffstat (limited to 'core/src/free')
-rw-r--r--core/src/free/java/de/danoeh/antennapod/core/ClientConfig.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/free/java/de/danoeh/antennapod/core/ClientConfig.java b/core/src/free/java/de/danoeh/antennapod/core/ClientConfig.java
index 03ce82140..54cd84b43 100644
--- a/core/src/free/java/de/danoeh/antennapod/core/ClientConfig.java
+++ b/core/src/free/java/de/danoeh/antennapod/core/ClientConfig.java
@@ -8,6 +8,7 @@ import de.danoeh.antennapod.core.preferences.UserPreferences;
import de.danoeh.antennapod.core.storage.PodDBAdapter;
import de.danoeh.antennapod.core.util.NetworkUtils;
import de.danoeh.antennapod.core.util.exception.RxJavaErrorHandlerSetup;
+import de.danoeh.antennapod.core.util.gui.NotificationUtils;
/**
* Stores callbacks for core classes like Services, DB classes etc. and other configuration variables.
@@ -44,6 +45,7 @@ public class ClientConfig {
NetworkUtils.init(context);
SleepTimerPreferences.init(context);
RxJavaErrorHandlerSetup.setupRxJavaErrorHandler();
+ NotificationUtils.createChannels(context);
initialized = true;
}