# AndroidGameMode

> Options for the available game modes that AndroidGame.GameMode can return.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEngine.Android](/engine/6000.6/script-reference/unityengine/android.md)
* **Assembly:** UnityEngine.AndroidJNIModule

```csharp
public enum AndroidGameMode
```

## Fields

| Value                                                                                             | Description                                                                                                                                                                                                                                            |
| ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [Battery](/engine/6000.6/script-reference/unityengine/android/androidgamemode/battery.md)         | [Battery](https://developer.android.com/reference/android/app/GameManager#GAME_MODE_BATTERY) game mode, which indicates that your application should use optimizations that save battery and give a longer gameplay time.                              |
| [Performance](/engine/6000.6/script-reference/unityengine/android/androidgamemode/performance.md) | [Performance](https://developer.android.com/reference/android/app/GameManager#GAME_MODE_PERFORMANCE) game mode, which indicates that you application should maximize performance.                                                                      |
| [Standard](/engine/6000.6/script-reference/unityengine/android/androidgamemode/standard.md)       | [Standard](https://developer.android.com/reference/android/app/GameManager#GAME_MODE_STANDARD) game mode, which indicates that your application should use its default performance characteristics.                                                    |
| [Unsupported](/engine/6000.6/script-reference/unityengine/android/androidgamemode/unsupported.md) | Game mode is [not supported](https://developer.android.com/reference/android/app/GameManager#GAME_MODE_UNSUPPORTED). For more information, refer to [getGameMode](https://developer.android.com/reference/kotlin/android/app/GameManager#getgamemode). |
