Version: 5.6

SystemInfo.unsupportedIdentifier

매뉴얼로 전환
public static string unsupportedIdentifier ;

설명

Value returned by SystemInfo string properties which are not supported on the current platform.

using UnityEngine;
using System.Collections;

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