aboutsummaryrefslogtreecommitdiffstats
path: root/examples/androidextras/notification/notification.pro
blob: 9d57ca3acf271b2c1d20ee5435afef1c7c15c66d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
QT += quick androidextras

ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android-sources
ANDROID_PACKAGE = org.qtproject.example.notification
ANDROID_MINIMUM_VERSION = 16
ANDROID_TARGET_VERSION = 16
ANDROID_APP_NAME = Qt Notifier

SOURCES += \
    main.cpp \
    notificationclient.cpp \
    androidjnibindings.cpp

OTHER_FILES += \
    qml/main.qml \
    android-sources/src/org/qtproject/example/notification/NotificationClient.java \
    android-sources/AndroidManifest.xml

RESOURCES += \
    main.qrc

HEADERS += \
    notificationclient.h \
    androidjnibindings.h