Values
Name | Value | Description |
---|---|---|
app_open | 1 | The app was launched by the user. |
notification_open | 2 | The app was launched by the user tapping on a notification. |
Generated Code
Android
package net.meilcli.dte.entity
/**
* Reasons why the app was launched.
*/
enum class AndroidLaunchReason(val value: Int) {
/**
* The app was launched by the user.
*/
AppOpen(1),
/**
* The app was launched by the user tapping on a notification.
*/
NotificationOpen(2),
}