From a1fb90fec9f66e46a18ebb1552271b54f95e2373 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Thu, 20 Sep 2018 17:17:58 +0200 Subject: [PATCH] append appid to android id to make sure it's not shared between our apps --- nymea-app/ui/Nymea.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nymea-app/ui/Nymea.qml b/nymea-app/ui/Nymea.qml index 17876859..791222ab 100644 --- a/nymea-app/ui/Nymea.qml +++ b/nymea-app/ui/Nymea.qml @@ -155,7 +155,7 @@ ApplicationWindow { PlatformHelper.requestPermissions(); } } else { - Engine.awsClient.registerPushNotificationEndpoint(PushNotifications.token, PlatformHelper.deviceManufacturer + " " + PlatformHelper.deviceModel, PlatformHelper.deviceSerial); + Engine.awsClient.registerPushNotificationEndpoint(PushNotifications.token, PlatformHelper.deviceManufacturer + " " + PlatformHelper.deviceModel, PlatformHelper.deviceSerial + "+io.guh.nymeaapp"); } }