Version: 2018.2

Application.RequestAdvertisingIdentifierAsync

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

パラメーター

delegateMethodデリゲートメソッド

戻り値

bool Advertising Identifier をサポートするプラットフォームの場合は true、そうでない場合は false を返します。false 場合、デリゲートメソッドは呼び出されません。

説明

iOS、Android、Windows ストア用の Advertising ID を求めます。

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