File indexing completed on 2024-09-15 07:24:28
0001 // SPDX-FileCopyrightText: 2023 Joshua goins <josh@redstrate.com> 0002 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0003 0004 #pragma once 0005 0006 #include <QObject> 0007 0008 class AndroidUtils : public QObject 0009 { 0010 Q_OBJECT 0011 0012 public: 0013 static AndroidUtils &instance(); 0014 0015 void checkPendingIntents(); 0016 0017 private: 0018 explicit AndroidUtils(QObject *parent = nullptr); 0019 };