Android notification and routing (#797)

Android notification and routing
This commit is contained in:
albexk
2024-05-12 18:04:14 +03:00
committed by GitHub
parent ff348a348c
commit abb3c918e3
40 changed files with 1108 additions and 543 deletions
-5
View File
@@ -7,10 +7,7 @@
#if defined(Q_OS_IOS)
# include "platforms/ios/iosnotificationhandler.h"
#elif defined(Q_OS_ANDROID)
# include "platforms/android/android_notificationhandler.h"
#else
# include "systemtray_notificationhandler.h"
#endif
@@ -18,8 +15,6 @@
NotificationHandler* NotificationHandler::create(QObject* parent) {
#if defined(Q_OS_IOS)
return new IOSNotificationHandler(parent);
#elif defined(Q_OS_ANDROID)
return new AndroidNotificationHandler(parent);
#else
# if defined(Q_OS_LINUX)