android_launch_reason History

android

Reasons why the app was launched.


Values

NameValueDescription
app_open1The app was launched by the user.
notification_open2The 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),    
}