UserCountry.cs 428 B

123456789101112131415
  1. using System.Globalization;
  2. namespace Unity.Services.Analytics.Internal.Platform
  3. {
  4. public static class UserCountry
  5. {
  6. public static string Name()
  7. {
  8. // User country cannot be reliably deduced from any setting we have available here
  9. // without using location services, so we return ZZ so the Analytics service will use
  10. // GeoIP.
  11. return "";
  12. }
  13. }
  14. }