DeviceIdentifiers.cs 309 B

123456789101112131415
  1. using System;
  2. using UnityEngine;
  3. namespace Unity.Services.Analytics.Platform
  4. {
  5. interface IIDeviceIdentifiersInternal
  6. {
  7. string Idfv { get; }
  8. }
  9. class DeviceIdentifiersInternal : IIDeviceIdentifiersInternal
  10. {
  11. public string Idfv => SystemInfo.deviceUniqueIdentifier;
  12. }
  13. }