diff options
author | ByteHamster <info@bytehamster.com> | 2019-12-12 09:39:40 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2019-12-12 09:41:35 +0100 |
commit | 29f468b332e78ff2ecb35ec704297cfc8fcd828f (patch) | |
tree | 03fb7814179d7cd031fd1cf38daaf59382e8aefa /core/src/play | |
parent | a99a41e3bb429632ecb0b28ef3d9d0dbbad826f9 (diff) | |
download | AntennaPod-29f468b332e78ff2ecb35ec704297cfc8fcd828f.zip |
Make sure to create notification channels
Diffstat (limited to 'core/src/play')
-rw-r--r-- | core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java b/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java index 800222ada..55d804203 100644 --- a/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java +++ b/core/src/play/java/de/danoeh/antennapod/core/ClientConfig.java @@ -10,6 +10,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. @@ -58,6 +59,7 @@ public class ClientConfig { } SleepTimerPreferences.init(context); RxJavaErrorHandlerSetup.setupRxJavaErrorHandler(); + NotificationUtils.createChannels(context); initialized = true; } |