From a8bbcbffb15578a476fb1227a54bf698fc9b0280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Balet?= Date: Sun, 4 May 2025 16:50:25 +0200 Subject: [PATCH] docs(README.md): bolden important info Boldened that there is no need to add the Firebase SDK, as this doesn't make that much sense and you're not always reading the entire text before starting. --- push-notifications/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/push-notifications/README.md b/push-notifications/README.md index 85fca33b1..f124f989a 100644 --- a/push-notifications/README.md +++ b/push-notifications/README.md @@ -27,7 +27,9 @@ func application(_ application: UIApplication, didFailToRegisterForRemoteNotific ## Android -The Push Notification API uses [Firebase Cloud Messaging](https://firebase.google.com/docs/cloud-messaging) SDK for handling notifications. See [Set up a Firebase Cloud Messaging client app on Android](https://firebase.google.com/docs/cloud-messaging/android/client) and follow the instructions for creating a Firebase project and registering your application. There is no need to add the Firebase SDK to your app or edit your app manifest - the Push Notifications provides that for you. All that is required is your Firebase project's `google-services.json` file added to the module (app-level) directory of your app. +The Push Notification API uses [Firebase Cloud Messaging](https://firebase.google.com/docs/cloud-messaging) SDK for handling notifications. See [Set up a Firebase Cloud Messaging client app on Android](https://firebase.google.com/docs/cloud-messaging/android/client) and follow the instructions for creating a Firebase project and registering your application. + +**There is no need to add the Firebase SDK** to your app or edit your app manifest - the Push Notifications provides that for you. All that is required is your Firebase project's `google-services.json` file added to the module (app-level) directory of your app. Android 13 requires a permission check in order to receive push notifications. You are required to call `checkPermissions()` and `requestPermissions()` accordingly, when targeting SDK 33.