delegateMethod | Delegate method. |
bool Platforms that don't support Advertising Identifier return value is false and the delegate method is not invoked.
Request advertising ID for iOS, Android and Windows Store.
no example available in JavaScript
using System; using UnityEngine;
public class SampleBehaviour : MonoBehaviour { public void Start() { Application.RequestAdvertisingIdentifierAsync ( (string advertisingId, bool trackingEnabled, string error) => { Debug.Log ("advertisingId " + advertisingId + " " + trackingEnabled + " " + error); } ); } }