Uninstall Tracking Setup - Expo SDK

Airbridge sends silent push notifications to users who have performed any app event at least once in the past 6 months to check if they have deleted the app. These notifications are sent daily between 3:00 PM and 4:00 PM (UTC). Uninstall events can be monitored in the Airbridge reports and raw data export files.

Submit Credentials

Submit your Apple Developer or Google Cloud Console credentials to Airbridge.

Get credentials from Apple Developer

Follow the steps below to get the required credentials from the Apple Developer Portal.

To get the APNs authentication key, you need to turn on the app's push notification from the Apple Developer Portal.

  1. Select [Identifiers] in the Apple Developer Portal.

  2. Find and click on the app you want to track uninstalls. Then, check "Push Notification."

  3. Select [Keys]. Click + to generate a new key. Then, download the APNs authentication key (p8). The APNs authentication key can be downloaded only when creating the key for the first time and cannot be downloaded again. If lost, the key must be regenerated. Up to 2 APNs authentication keys can be generated at once.

  4. The Key ID can be found when clicking on the newly generated key in [Keys].

Navigate to [Certificates, Identifiers & Profiles]>[Identifiers] in the Apple Developer Portal. Click on the app you want to track uninstalls to find the Bundle ID.

Navigate to [Account]>[Membership details] in the Apple Developer Center to find the Team ID (App ID Prefix).

Get credentials from Google Cloud Console

Follow the steps below to get the required credentials from the Google Cloud Console.

Follow the steps below to enable the Google Cloud API required for Android app uninstall tracking.

1. Log in to the Google Cloud Console. Select the project for uninstall tracking from the dropdown list.
2. Navigate to [APIs & Services] > [Library].
3. Enter 'Firebase' in [Search for APIs & Services] and press Enter.
4. Scroll through the search results and click on 'Firebase Cloud Messaging API'.
5. Click 'Enable'.

Create a custom role following the steps below.

1. Sign in to the Google Cloud console. From the drop-down list, select a project to create a custom role.

2. Navigate to [IAM & Admin]>[Roles]. Click + Create Role.

3. Enter the following details:

  • Title: Airbridge Uninstalls

  • ID: abr_uninstalls

  • Role launch stage: General Availability

4. Click +Add Permissions.

5. In the Enter property name or value field, enter "cloudmessaging.messages.create" and select it from the search results. Check the checkbox and click Add.

6. Click Create to finish creating the custom role.

Create a service account by following the steps below.

1. Navigate to [IAM & Admin]>[Service Accounts]. Click + Create Service Account.

2. Enter “ABR Uninstall Service Account” as the service account name. Click Create and Continue.

3. From the Select a role drop-down list, search and select "Airbridge Uninstalls." Click Continue.

4. Click Done to finish creating the service account.

Create a private key file of the service account.

1. Navigate to [IAM & Admin]>[Service Accounts]. From the service account list, click the email of the service account whose name is "ABR Uninstall Service Account."

2. Select the Keys tab. Click Add Key and select Create new key.

3. Select JSON as the key type and click Create. The JSON file containing the key file will be downloaded. Make sure to securely store the JSON file.

Submit credentials to Airbridge

iOS

Follow the steps below to submit the credentials to Airbridge.

1. Navigate to [Settings]>[Uninstall Tracking] in the Airbridge dashboard.

2. Select the [iOS] tab.

3. Submit the required credentials.

Select app environment

After submitting all the required credentials to Airbridge, select the app environment to collect push tokens.

Different push tokens are collected depending on the app environment you choose. For example, push tokens collected in the production environment cannot be used in the development environment.

  • Supported apps: Apps downloaded from the Apple App Store or test apps released via TestFlight, Ad Hoc, or Enterprise

  • Push tokens collected: The actual push tokens used for uninstall tracking

  • Supported app: Development apps for testing purposes that are not supported in the production environment

  • Push token collected: Push token used in the development environment

In the development environment, you can only proceed with silent push testing. To actually track uninstalls, proceed with a production app.

Android

Follow the steps below to submit Firebase credentials to Airbridge.

1. Navigate to [Settings]>[Uninstall Tracking] in the Airbridge dashboard.

2. Select the [Android] tab.

3. Upload the JSON key file by dropping the file or clicking to select the file.

Test silent push notifications

iOS

Test silent push notifications to make sure the notifications are successfully sent to the devices. To proceed with the test, click Test silent push. The silent push test does not measure or generate uninstall events; therefore, uninstalls cannot be confirmed in the Airbridge dashboard.

Conducting the silent push test is recommended as the Bundle ID, which is one of the required credentials for uninstall tracking, can only be validated through the silent push test.

To conduct a silent push test, you need an APNs push token (device token). The push token you collect varies depending on the app environment. You need to check the push token and the app environment before proceeding with a silent push test. Refer to the Apple Developer Documents for instructions on how to find the APNs push token.

Upon sending a silent push to a device from Airbridge, you can check for a success message or an error code. The main error codes that can be received are as follows. For more information about the error codes, refer to the Apple Developer Documents.

Some error codes that indicate that the app has been deleted could show as a result of the silent push test. Regardless, be reminded that the purpose of the silent push test is to verify whether silent push notifications are being sent successfully using the submitted credentials.

Test the silent push notification on a device for testing purposes where the app has been installed recently and retained for the last 10 days.

Attention

You can't conduct silent push tests on iOS Simulators.

Android

Test silent push notifications to make sure the notifications are successfully sent to devices. To proceed with the test, click Test silent push and enter the FCM registration token of your test device. For detailed instructions on how to access your FCM registration token, refer to the Firebase documentation.

A success message will be shown when a silent push notification is successfully sent to your test device where the app is installed. A fail message containing the 404 error code will be shown when a silent push notification is successfully sent to a test device where the app is uninstalled.

Find the complete list of error codes below. For details about the error codes, refer to the Firebase documentation.

Testing silent push notifications test does not affect the uninstall event count that is available in Airbridge reports and raw data export files. Note that testing silent push notifications does not result in the actual uninstall event collection.

Set Up the Airbridge SDK

For uninstall tracking, you must complete the Airbridge SDK setup by following the instructions below.

Enable push notifications

Airbridge tracks app deletions through silent push notifications. Therefore, you need to set up the app to receive push notifications.

Send the push token

When the push token is generated, call the registerPushToken function to send it to the SDK.

123
import { Airbridge } from 'airbridge-react-native-sdk'
...
Airbridge.registerPushToken(token)

Attention

On iOS, the APNS push token should be sent. On Android, the Firebase push token should be sent.

Silence push notifications

The silent push notifications Airbridge sends for uninstall tracking should not be displayed in the user's app. By adding the exception handling code as below, the silent push will not be exposed to the user.

12345
import { Airbridge } from 'airbridge-react-native-sdk'
...
if (Airbridge.isUninstallTrackingNotification(payload)) {
    return
}

Enable Uninstall Tracking

After submitting the credentials to Airbridge and completing the SDK setup, the [Enable uninstall tracking] toggle will be activated. Switch on the toggle to start tracking uninstall events.

For more details about uninstall tracking, refer to this article.