Version: 2023.1
언어: 한국어

Application.RequestAdvertisingIdentifierAsync

매뉴얼로 전환
public static bool RequestAdvertisingIdentifierAsync (Application.AdvertisingIdentifierCallback delegateMethod);

파라미터

delegateMethod Delegate method.

반환

bool Returns true if successful, and false for platforms which do not support Advertising Identifiers. In this case, the delegate method is not invoked.

설명

Request an advertising ID for iOS and UWP.

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); } ); } }