16 lines
309 B
C#
16 lines
309 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.Services.Analytics.Platform
|
|
{
|
|
interface IIDeviceIdentifiersInternal
|
|
{
|
|
string Idfv { get; }
|
|
}
|
|
|
|
class DeviceIdentifiersInternal : IIDeviceIdentifiersInternal
|
|
{
|
|
public string Idfv => SystemInfo.deviceUniqueIdentifier;
|
|
}
|
|
}
|