Android SDK Setup
1. Requirements
Sign up to FlareLane and create a project
2. Credentials Setup
Follow this guide below:
3. Install SDK using Gradle
Add the Gradle repository. Enter the following values inside the repositories block:
Where is the repositories block in your project?
For a project created through the latest Android Studio, it is located in settings.gradle -> dependencyResolutionManagement.
For others, build.gradle -> allprojects.
Open your App level build.gradle(<project>/<app>/build.gradle), add the SDK and click Sync Now to get up to date.
4. Initialization
Add initialization code to onCreate of Application Class (not Activity). Start by creating an Application Class first, and if you already have an Application Class, you can skip this process.
Enter android.name=".MainApplication"
in the AndroidManifest.xml file and generate the MainApplication class file through the editor helper. You can also create this file manually.
Add the following code to onCreate
. You can check your project ID at FlareLane console's Project.
5. Test
After completing all the steps, build and run your app. Devices that subscribe to push notifications will be automatically added to FlareLane console's All Devices.
Before actual deployment, be sure to verify that the push notifications are being received properly on the device and that the statistics are accurately recorded when the push notifications are clicked.
6. Identify your user
FlareLane's device is 'anonymous' and you can match the device with your user based on the unique user ID that identifies your user.
Setting up User ID has many benefits. You can distinguish whether a user has signed-up, and push notifications can be sent based on the User ID.
Usually, when a user sign-up or log-in, you should execute setUserId
.
7. Additional Setup
To set a accent color or channel name, add the following lines:
To customize notification icons, see below:
To use Journeys or Message Personalization, integrate custom data via SDK or API:
Resources
Last updated