# AndroidLaunchReport

> Provides information about the application launched on Android devices.

## Definition

* **Type:** Class
* **Namespace:** [UnityEditor.Android](/engine/6000.5/script-reference/unityeditor/android.md)
* **Assembly:** UnityEditor.Android.Extensions

```csharp
public class AndroidLaunchReport : DefaultLaunchReport
```

## Remarks

Use this class to get information about the application launched on multiple devices at the same time.

## Examples

```csharp
using UnityEngine;
using UnityEditor;
using UnityEditor.Build;

public class PostLaunchCallback : IPostprocessLaunch
{
	public int callbackOrder => 0;

	private void Log(string message)
	{
		Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, message);
	}

	public void OnPostprocessLaunch(ILaunchReport launchReport)
	{
		Log($"Launch callback on {launchReport.buildTarget.TargetName.ToString()}, result: {launchReport.result}");
#if UNITY_ANDROID
		var androidLaunchReport = UnityEditor.Android.AndroidLaunchReportExtensions.AsAndroidReport(launchReport);
		if (androidLaunchReport != null)
		{
			foreach (var launch in androidLaunchReport.Launches)
			{
				Log($"Running '{launch.PackageName}/{launch.ActivityName}' on device '{launch.DeviceId}', Success: {launch.Success}, errors: {launch.Errors}");
			}
		}
#endif
	}
}
```

## Properties

| Property                                                                                        | Description                                                                                 |
| ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
| [Launches](/engine/6000.5/script-reference/unityeditor/android/androidlaunchreport/launches.md) | An array containing information about the application launched on multiple Android devices. |

## Classes

| Class                                                                                                           | Description                                                                     |
| --------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
| [AndroidLaunchReport.Launch](/engine/6000.5/script-reference/unityeditor/android/androidlaunchreport/launch.md) | Provides information about the application launched on a single Android device. |
