Skip to content

Commit 77eae7d

Browse files
Merge pull request #265512 from sethmanheim/anh2-6
Remove unneeded content from include file
2 parents d8924c9 + d5c0f5f commit 77eae7d

3 files changed

+20
-21
lines changed

articles/notification-hubs/push-notifications-android-specific-devices-firebase-cloud-messaging.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,16 @@ description: Learn how to use Notification Hubs to push notifications to specifi
44
services: notification-hubs
55
author: sethmanheim
66
manager: femila
7-
editor: jwargo
8-
9-
ms.assetid: 3c23cb80-9d35-4dde-b26d-a7bfd4cb8f81
107
ms.service: notification-hubs
118
ms.workload: mobile
129
ms.tgt_pltfrm: mobile-android
1310
ms.devlang: java
1411
ms.topic: tutorial
1512
ms.custom: mvc, devx-track-java
16-
ms.date: 06/30/2023
13+
ms.date: 02/06/2024
1714
ms.author: sethm
18-
ms.reviewer: jowargo
19-
ms.lastreviewed: 04/30/2019
15+
ms.reviewer: heathertian
16+
ms.lastreviewed: 02/06/2024
2017
---
2118

2219
# Tutorial: Send notifications to specific devices using Notification Hubs and Google Firebase Cloud Messaging
@@ -25,9 +22,10 @@ ms.lastreviewed: 04/30/2019
2522

2623
## Overview
2724

28-
This tutorial shows you how to use Azure Notification Hubs to broadcast breaking news notifications to an Android app. When complete, you will be able to register for breaking news categories you are interested in, and receive only push notifications for those categories. This scenario is a common pattern for many apps where notifications have to be sent to groups of users that have previously declared interest in them, for example, RSS reader, apps for music fans, etc.
25+
> [!NOTE]
26+
> For information about Firebase Cloud Messaging deprecation and migration steps, see [Google Firebase Cloud Messaging migration](notification-hubs-gcm-to-fcm.md).
2927
30-
[!INCLUDE [notification-hubs-firebase-deprecation](../../includes/notification-hubs-firebase-deprecation.md)]
28+
This tutorial shows you how to use Azure Notification Hubs to broadcast breaking news notifications to an Android app. When complete, you will be able to register for breaking news categories you are interested in, and receive only push notifications for those categories. This scenario is a common pattern for many apps where notifications have to be sent to groups of users that have previously declared interest in them, for example, RSS reader, apps for music fans, etc.
3129

3230
Broadcast scenarios are enabled by including one or more *tags* when creating a registration in the notification hub. When notifications are sent to a tag, all devices that have registered for the tag will receive the notification. Because tags are simply strings, they do not have to be provisioned in advance. For more information about tags, see [Notification Hubs Routing and Tag Expressions](notification-hubs-tags-segment-push-message.md).
3331

articles/notification-hubs/push-notifications-android-specific-users-firebase-cloud-messaging.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ description: Learn how to send push notifications to specific Android apps by us
44
services: notification-hubs
55
author: sethmanheim
66
manager: femila
7-
editor: jwargo
8-
9-
ms.assetid: ae0e17a8-9d2b-496e-afd2-baa151370c25
107
ms.service: notification-hubs
118
ms.workload: mobile
129
ms.tgt_pltfrm: mobile-android
1310
ms.devlang: java
1411
ms.topic: tutorial
1512
ms.custom: mvc, devx-track-java, devx-track-dotnet
16-
ms.date: 09/11/2019
13+
ms.date: 02/06/2024
1714
ms.author: sethm
18-
ms.reviewer: jowargo
19-
ms.lastreviewed: 09/11/2019
15+
ms.reviewer: heathertian
16+
ms.lastreviewed: 02/06/2024
2017
---
2118

2219
# Tutorial: Send push notifications to specific Android apps using Azure Notification Hubs
2320

2421
[!INCLUDE [notification-hubs-selector-aspnet-backend-notify-users](../../includes/notification-hubs-selector-aspnet-backend-notify-users.md)]
2522

23+
> [!NOTE]
24+
> For information about Firebase Cloud Messaging deprecation and migration steps, see [Google Firebase Cloud Messaging migration](notification-hubs-gcm-to-fcm.md).
25+
2626
This tutorial shows you how to use Azure Notification Hubs to send push notifications to a specific app user on a specific device. An ASP.NET WebAPI backend is used to authenticate clients and to generate notifications, as shown in the guidance article [Registering from your app backend](notification-hubs-push-notification-registration-management.md#registration-management-from-a-backend). This tutorial builds on the notification hub that you created in the [Tutorial: Push notifications to Android devices by using Azure Notification Hubs and Firebase Cloud Messaging](notification-hubs-android-push-notification-google-fcm-get-started.md).
2727

2828
In this tutorial, you take the following steps:

articles/notification-hubs/xamarin-notification-hubs-push-notifications-android-gcm.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@ title: Send push notifications to Xamarin.Android apps using Azure Notification
33
description: In this tutorial, you learn how to use Azure Notification Hubs to send push notifications to a Xamarin Android application.
44
author: sethmanheim
55
manager: femila
6-
editor: jwargo
76
services: notification-hubs
8-
9-
ms.assetid: 0be600fe-d5f3-43a5-9e5e-3135c9743e54
107
ms.service: notification-hubs
118
ms.workload: mobile
129
ms.tgt_pltfrm: mobile-xamarin-android
1310
ms.devlang: csharp
1411
ms.topic: tutorial
1512
ms.custom: "mvc, devx-track-csharp"
16-
ms.date: 08/27/2021
17-
ms.author: matthewp
18-
ms.reviewer: jowargo
19-
ms.lastreviewed: 08/01/2019
13+
ms.date: 02/06/2024
14+
ms.author: sethm
15+
ms.reviewer: heathertian
16+
ms.lastreviewed: 02/06/2024
17+
2018
---
2119

2220
# Tutorial: Send push notifications to Xamarin.Android apps using Notification Hubs
@@ -25,6 +23,9 @@ ms.lastreviewed: 08/01/2019
2523

2624
## Overview
2725

26+
> [!NOTE]
27+
> For information about Firebase Cloud Messaging deprecation and migration steps, see [Google Firebase Cloud Messaging migration](notification-hubs-gcm-to-fcm.md).
28+
2829
This tutorial shows you how to use Azure Notification Hubs to send push notifications to a Xamarin.Android application. You create a blank Xamarin.Android app that receives push notifications by using Firebase Cloud Messaging (FCM). You use your notification hub to broadcast push notifications to all the devices running your app. The finished code is available in the [NotificationHubs app](https://github.com/Azure/azure-notificationhubs-dotnet/tree/master/Samples/Xamarin/GetStartedXamarinAndroid) sample.
2930

3031
In this tutorial, you take the following steps:

0 commit comments

Comments
 (0)