Options for the launch mode of an Android activity.
Use this enum with the ApplicationStartInfo.launchMode property. For more information, refer to Android's documentation on ApplicationStartInfo.
| Property | Description |
|---|---|
| Standard | Mirrors android:public static final int LAUNCH_MODE_STANDARD. |
| SingleTop | Mirrors android:public static final int LAUNCH_MODE_SINGLE_TOP. |
| SingleInstance | Mirrors android:public static final int LAUNCH_MODE_SINGLE_INSTANCE. |
| SingleTask | Mirrors android:public static final int LAUNCH_MODE_SINGLE_TASK. |
| SingleInstancePerTask | Mirrors android:public static final int LAUNCH_MODE_SINGLE_INSTANCE_PER_TASK. |