/* SPDX-FileCopyrightText: 2022 Volker Krause SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef KANDROIDEXTRAS_MOCK_QCOREAPPLICATION_H #define KANDROIDEXTRAS_MOCK_QCOREAPPLICATION_H #include_next #include namespace QNativeInterface { namespace QAndroidApplication { inline QJniObject context() { QJniObject obj; obj.addToProtocol(QStringLiteral("global androidContext()")); return obj; } } } #endif