summaryrefslogtreecommitdiffstats
path: root/src/android/jar/src/org/qtproject/qt/android/QtApplicationBase.java
blob: de572266b93a7775255dd6649f6815f640021416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

package org.qtproject.qt.android;

import android.app.Application;

public class QtApplicationBase extends Application {
    @Override
    public void onTerminate() {
        QtNative.terminateQt();
        QtNative.getQtThread().exit();
        super.onTerminate();
    }
}