Version: 5.4
public static string unsupportedIdentifier ;

説明

現在のプラットフォームでサポートされていない SystemInfo 文字列プロパティーからの戻り値

using UnityEngine;
using System.Collections;

public class NewBehaviourScript : MonoBehaviour { void Start () { if (SystemInfo.unsupportedIdentifier != SystemInfo.deviceUniqueIdentifier) { // use SystemInfo.deviceUniqueIdentifier } } }