aboutsummaryrefslogtreecommitdiffstats
path: root/examples/platforms/android/qml_in_android_view/main.cpp
blob: c195699a0f15cb7cd10b8e63fe07e50298565956 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QGuiApplication>

int main(int argc, char *argv[])
{
    QGuiApplication app(argc, argv);

    return app.exec();
}