Push notifications for an ios/android app in qt?
-
Hi,
I have to write a simple app for ios/android to be able to receive a push notifications from a back-office (parse.com I guess) and display them to a user.
Can I do it in qt?
Regards.
-
Hi,
you can use this Qt plugin for Push notifications.Here is some sample code:
import QtQuick 2.1 import VPlayPlugins.parse 1.0 Parse { applicationId: "<PARSE-APP-ID>" clientKey: "<PARSE-CLIENT-ID>" onNotificationReceived: { console.debug("Received new notification") } }
And here is a push notification example on Github:
https://github.com/vplayplugins/ParseSampleCheers, Chris