RequestAdvertisingIdentifierAsync(AdvertisingIdentifierCallback)
Request an advertising ID for iOS and UWP.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public static bool RequestAdvertisingIdentifierAsync(Application.AdvertisingIdentifierCallback delegateMethod)
Parameters
Delegate method.
Returns
Type | Description |
|---|---|
| bool | Returns true if successful, and false for platforms which do not support Advertising Identifiers. In this case, the delegate method is not invoked. |
Examples
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); } ); }}