In the player on Android devices for HMI.
See Also: RuntimePlatform, Platform dependent Compilation..
using UnityEngine;
public class Example : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.HMIAndroid) { Debug.Log("Do something special here!"); } } }