Prerequisites
SDK installation
- Gradle
- Maven
Applicable if your project uses Gradle for managing dependency. Add Replace
castled-notifications as a dependency in the build.gradle file of your Android application module.build.gradle
latest-version with the latest version number of the SDK found here. Sync the gradle file to pull the dependencies just added.SDK initialization
The next step is to initialize the SDK. Initialization is typically done in theonCreate method of your
Application class as follows.
MyApplicationClass.kt
app-idis a unique key associated with your Castled account. It can be found in the Castled dashboard at Settings > Api Keys.locationis the region where you have your Castled account.
CastledConfigs.kt
User Identification
To identify the user associated with this app instance, use the following method. This is typically invoked immediately after user completes the sign-in flow of your app.user-id is the id that you use internally within your organisation to identify a user.
It is recommended to pass an optional user-token as the third parameter to
setUserId to mitigate any risk of user impersonation. In the absence of a
user-token, no additional verifications will be done to enforce user
authenticity. If your user-id is random id such as a UUID, user-token
is probably not required. More info on user-token can be found in the next
section.Secure User Identification
user-token is a unique token for each user generated by your app server. This token is usually issued by the app server after the user
completes the login flow within your app.
user-token is basically a Base64 encoded Hash-based Message Authentication Code (HMAC). Ensure the hash computation happens in your app server so that api-key
is not exposed. You can create an api-key in the Setting > API Keys page within your Castled account. Contact Castled support for help with integration.
Find sample server code snippets to generate HMAC for the user-id.
FAQ
How do I rotate the Api Key?
How do I rotate the Api Key?
At your server side you can keep the
Api Key as some config that can be
easily changed with minimal or no code change. So when you want to rotate
the key, create a new key from Castled dashboard, update the new key at your
server side. Ideally you shouldn’t disable old token immediately as new user
token is updated only when setUserId() is called. You should allow some grace
period before disabling the old Api Key so that all users gets the updated user token.User Logout
To remove the user association with a particular app instance. Typically invoked as part of the user sign-out flow within the app. Once invoked, the app won’t be able to receive any messages or notifications sent from Castled until the user sign-in again to the app again.SDK Configs
This section covers the basic configurations available in the SDK. Use these configs if you want to enable specific mobile communication channel or want to override default behavior.| Config Name | Description | Default Value |
|---|---|---|
| enablePush | Enables push notification feature | false |
| enablePushBoost | Enhances push notification delivery rates on Android devices with the advanced push boost feature | false |
| enableInApp | Enables In App notification feature | false |
| enableAppInbox | Enables App Inbox notification feature | false |
| enableTracking | Enables tracking of User attributes or App events | false |
| enableSessionTracking | Enables tracking of User Sessions | true |
| location | Preferred server location | US |
| skipUrlHandling | Disables the click action handling by the SDK. Set when app handles the notification action itself | false |
MyApplicationClass.kt
SDK Permissions
By defaultAndroidManifest.xml of the SDK includes the following permission requests. No developer action is required here.