Page updated Nov 14, 2023

Set up Amplify Push Notifications

The Push Notifications category allows you to integrate push notifications in your app with Amazon Pinpoint targeting, campaign, and journey management support. You can segment your users, trigger push notifications to your app, and record metrics in Pinpoint when users receive or open notifications. Amazon Pinpoint helps you to create messaging campaigns and journeys targeted to specific user segments or demographics and collect interaction metrics with push notifications.

Amplify Push Notifications is currently only supported for applications created via the React Native CLI

Prerequisites

You should have completed the CLI and project setup steps.

An application targeting at least iOS 13.0, using Xcode 14.1 or later.

Push Notifications are delivered via the Apple Push Notification service (APNs). In order to use APNs, you need to setup credentials (keys or certificates) and export your credentials to a p12 file. See Setting up push notification services for more information.

Testing with APNs on the iOS simulator requires an Apple Silicon Mac running macOS 13+, Xcode 14+, and iOS simulator 16+. If your development environment does not meet all these requirements, then you must run on a real device to get an APNs token.

Set Entitlements

Using Amplify Push Notifications with APNs requires the following capabilities:

  • Push Notifications
  • Background Processing -> Remote Notifications

To add these capabilities:

  1. Open your Xcode project, go to project settings, select your main application target, select the Signing and Capabilities tab, and click + Capability in the upper left corner of the editor pane to bring up the Capabilities dialog.

Arrow pointing to the plus capability icon.

Xcode can be a little finicky with this step. If the Capabilities dialog is empty, try switching to a different tab and then switching back to Signing and Capabilities

  1. Type push in the filter box and double-click Push Notifications to add the capability.

The word push typed into the search bar capabilities and push notifications is a result.

  1. Repeat step 1 to open the Capabilities dialog and then type back in the filter box and double-click Background Modes to add the capability.

The word back typed into the search bar and background modes is a result.

  1. Select Change All when prompted.

  2. Under Background Modes, select Remote Notifications

Remote notifications box is selected in the background modes section.

  1. Select Change All again when prompted.

An application targeting at least Android SDK API level 24.

Push Notifications are delivered via Firebase Cloud Messaging (FCM). In order to use FCM, you need to register your app on the Firebase console. See Setting up push notification services for more information.

Applying the Google services plugin

The Firebase documentation directs you to add the Google services plugin to your app build.gradle using the Gradle plugins DSL. However, we recommend you continue to use the Legacy Plugin Application instead:

1apply plugin: 'com.google.gms.google-services'

If you prefer using the plugins DSL, you should add the plugins block to the very top of the file or you may experience issues when building your app for Android.

Set up backend resources

To use Push Notifications with Amplify, you have the option to either have the Amplify CLI setup resources for you, or you can use an existing Amazon Pinpoint resource in your AWS account.

Prerequisite: Install and configure the Amplify CLI

Push Notifications requires version 10.8.0+ of the Amplify CLI. You can check your current version with amplify -version and upgrade to the latest version with amplify upgrade.

To start provisioning push notification resources in the backend, go to your project directory and execute the command:

1amplify add notifications

Choose APNS when promoted:

1? Choose the push notification channel to enable.
2❯ APNS |  Apple Push Notifications
3 FCM | » Firebase Push Notifications
4 In-App Messaging
5 Email
6 SMS

Follow the setup prompts:

Authorizing the app for analytics events is crucial for unauthenticated users, particularly if you intend to configure Amplify or send push notifications to your users before their authentication. If authorization is declined, please keep in mind that updating the Cognito user pool would become necessary, and any subsequent updates could potentially result in the deletion of the current user data.

1? Provide your pinpoint resource name: › [pinpoint_resource_name]
2? Apps need authorization to send analytics events. Do you want to allow guests
3 and unauthenticated users to send analytics events? (we recommend you allow this
4 when getting started) (Y/n)

Choose Certificate when promoted:

1? Choose authentication method used for APNs
2> Certificate
3Key

The CLI will prompt for your p12 certificate path, enter a path relative to the location where you ran the command.

Note: If you receive this error:

1🛑 Command failed: openssl pkcs12 -in [path_to_your_cert].p12 -out [output_path].pem -nodes -passin pass:
2Error outputting keys and certificates

Please try using LibreSSL 3.3.6 instead of OpenSSL. See issue #12969

Upon completion, amplifyconfiguration.json will be updated to reference the newly provisioned backend push notifications resources. Note that this file should already be generated for you by the Amplify CLI as a part of your project if you followed the project setup walkthrough.

Choose FCM when promoted:

1? Choose the push notification channel to enable.
2 APNS |  Apple Push Notifications
3❯ FCM | » Firebase Push Notifications
4 In-App Messaging
5 Email
6 SMS
7
8? Provide your pinpoint resource name:
9 `yourPinpointResourceName`
10
11? Apps need authorization to send analytics events. Do you want to allow guests and unauthenticated users to send analytics events? (we recommend you allow this when getting started) (Y/n)
12 'Y'

The CLI will prompt for your Server Key, paste the Token you copied while setting up push notification services.

Upon completion, amplifyconfiguration.json will be updated to reference the newly provisioned backend push notifications resources. Note that this file should already be generated for you by the Amplify CLI as a part of your project if you followed the project setup walkthrough.

Existing Amazon Pinpoint resources can be used with Amplify Push Notifications by configuring it with Application ID and Region.

1Amplify.configure({
2 Notifications: {
3 Push: {
4 AWSPinpoint: {
5 appId: '<app-id>',
6 region: '<region>'
7 }
8 }
9 }
10});
  • appId: Amazon Pinpoint application ID
  • region: AWS Region where the resources are provisioned (e.g. us-east-1)

Install Amplify Libraries

In your project directory, you should first install the necessary dependencies for using Amplify Push Notifications.

Instructions for React Native version 0.72 and below

@aws-amplify/react-native requires a minimum iOS deployment target of 13.0 if you are using react-native version less than or equal to 0.72. Open the Podfile located in the ios directory and update the target value:

1- platform :ios, min_ios_version_supported
2 + platform :ios, 13.0
1npm install aws-amplify @aws-amplify/react-native @aws-amplify/rtn-push-notification @react-native-async-storage/async-storage react-native-get-random-values

Integrate native module

On Android, there should be no additional integration steps after the prerequisites above have been completed.

Since push notifications require interaction with the native platform, there are some additional steps required to integrate your React Native app with the Amplify Push Notifications native module.

You should have already installed the native module in an earlier step, now you need to link it. In your React Native app's root directory run the following command.

1npx pod-install

Update your Application Delegate

Locate and open your AppDelegate.m or AppDelegate.mm file in your text editor. You should find it in your React Native project under /ios/<your-project-name>

At the top of your AppDelegate, import Amplify Push Notifications:

1#import "AppDelegate.h"
2#import "AmplifyPushNotification.h"
3
4...

In the body of your AppDelegate, add the following two methods:

1- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
2 [AmplifyPushNotification didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
3}
4
5- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler {
6 [AmplifyPushNotification didReceiveRemoteNotification:userInfo withCompletionHandler:completionHandler];
7}

Initialize Amplify Push Notifications

To initialize Amplify Push Notifications, you will first need to configure Amplify.

Import and load the configuration file in your app.

1// Example index.js
2// ...
3import { Amplify } from 'aws-amplify';
4import amplifyconfig from './src/amplifyconfiguration.json';
5
6Amplify.configure(amplifyconfig);
7// ...

Next, initialize Amplify Push Notifications. It is recommended to do this in your app's root entry point after configuring Amplify if your app requires push notification handling even while in a terminated state.

1// Example index.js
2// ...
3import { initializePushNotifications } from 'aws-amplify/push-notifications';
4
5initializePushNotifications();
6// ...

Your resulting entry file should look something like the following:

1import { AppRegistry } from 'react-native';
2import App from './App';
3import { name as appName } from './app.json';
4
5import { Amplify } from 'aws-amplify';
6import { initializePushNotifications } from 'aws-amplify/push-notifications';
7import amplifyconfig from './src/amplifyconfiguration.json';
8
9Amplify.configure(amplifyconfig);
10initializePushNotifications();
11
12AppRegistry.registerComponent(appName, () => App);