Support the Back button on Android

Add the following script to your scene to allow the Back button on Android to exit the application:

public class BackButton : MonoBehaviour {

	void FixedUpdate() {
		if (Application.platform == RuntimePlatform.Android
				&& Input.GetKey(KeyCode.Escape)) {
			Application.Quit();
		}
	}
}