Version: 2023.1
言語: 日本語

Application.RequestAdvertisingIdentifierAsync

マニュアルに切り替える
public static bool RequestAdvertisingIdentifierAsync (Application.AdvertisingIdentifierCallback delegateMethod);

パラメーター

delegateMethod デリゲートメソッド

戻り値

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