SDK

Device Registration

In this guide we will dive deeper into how you should handle the device registration. When you launch() Notificare, the device will be registered as a non-push device.

When a successful device registration takes place, we will emit an event. If you have configured a custom delegate as mentioned in the Implementation page, you can receive those intents by implementing the didRegisterDevice delegate method from NotificareDelegate.

extension AppDelegate: NotificareDelegate {
    func notificare(_ notificare: Notificare, didRegisterDevice device: NotificareDevice) {

    }
}

You can also check the details of the currently registered device.

Notificare.shared.device().currentDevice

The onReady method in NotificareDelegate will also be called when all Notificare modules has been launched, including a successful device registration.

Additionally, you can verify whether Notificare is ready at any point by calling Notificare.shared.isReady.

Register as a user

By default, a device is registered as an anonymous user. However, there will be situations where simply registering an anonymous device is not what you want. For example if you authenticate your users you will not want to register an anonymous device whenever the app launches. When that is the case, you will need to tell the library you want to register as a specific user.

Notificare.shared.device().register(userId: "7f42bedc-d74b-4c64-a5cf-76bcc5130b05", userName: "John Doe") { result in

}

After that, the device will remain registered with that userId / userName until you explicitly register it as anonymous. Depending on the way you authenticate users, you might want to check the logged in state on launch (in the onReady) and change it if necessary. Forcing registration as anonymous can be best achieved by setting userId and userName to null.

Notificare.shared.device().register(userId: nil, userName: nil) { result in

}

Override Device Language

By default, we will automatically collect the language and region of a device based on the Locale of the device. For most cases this will be enough but for those cases where you would like to override the device language and region combination to a strict selection of languages, you can do so by invoking the following method:

Notificare.shared.device().updatePreferredLanguage("en-US") { result in

}

Eventually, you can always retrieve the preferred language by calling the following method:

Notificare.shared.device().preferredLanguage

User Data Fields

There are use cases where simply associating an userId and userName will not suffice. For those cases you can make use of User Data Fields where you can create key-value pairs for your application and then use them to extend your device registration. Before you can implement them you will need to first create them in your application via our dashboard. This is described here.

Once you have created one or more fields, you can implement this functionality in your app. To retrieve the list of fields allowed in your app you should use the following method:

Notificare.shared.device().fetchUserData { result in

}

Whenever you want to update those fields with new values you should use the following method:

let userData: NotificareUserData = [
    /* your properties here */
    "myKey": "myValue",
]

Notificare.shared.device().updateUserData(userData) { result in

}

If you are using our inbox functionality, these fields will also be available as placeholders when sending notifications by simply including {{userData.key}} in your messages.

Do Not Disturb

Each device registered with Notificare can be configured to specify a period of time during the day when it should not receive notifications. You can use this functionality in your app settings to allow the user to provide a time range where messages will not be displayed in the lock screen or notification center. Please note that if you are using our inbox functionality these message will still be there.

To retrieve a device's DnD preferences use the following method:

Notificare.shared.device().fetchDoNotDisturb { result in

}

You can update the DnD values for a device, using the following method:

Notificare.shared.device().updateDoNotDisturb(dnd) { result in

}

Finally, you will probably also need to eventually clear the Do Not Disturb period. To do that, simply use the method below:

Notificare.shared.device().clearDoNotDisturb { result in

}

Test Devices

It is possible to enable devices to be registered as test devices. This allows you to perform a wide range of tests in our dashboard by simply scanning a QR Code. In order to enable this functionality, the following steps are mandatory.

First you need to add the following URL scheme to your app's *.entitlements file:

<key>com.apple.developer.associated-domains</key>
<array>
  <string>applinks:$(NOTIFICARE_APPLICATION_ID).applinks.notifica.re</string>
</array>

Where $(NOTIFICARE_APPLICATION_ID) must be replaced by your own app identifier (you can find that in Settings > Configure App).

When dealing with a multi-environment application, you may want to consider using your Build Setting to create a User-Defined Setting.

Then in the didOpenUrl method in your AppDelegate, you will need to handle possible URLs with that URL scheme.

func application(_: UIApplication, open url: URL, options _: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool {
    if Notificare.shared.handleTestDeviceUrl(url) {
        return true
    }

    return false
}

The method will return true if the URL could be parsed as a Test Device registration URL. If it returns false, this means you should process the event yourself.

Since the Test Devices links are Dynamic Links, you must configure the Links service, providing information about your application identifier and fingerprints. You can find more information in the Links guide.