Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. Dismiss Notice

Unity 4.2 SystemInfo.deviceUniqueIdentifier regression

Discussion in 'iOS and tvOS' started by Alexey, Aug 2, 2013.

  1. Alexey

    Alexey

    Unity Technologies

    Joined:
    May 10, 2010
    Posts:
    1,600
    We found out that we broke SystemInfo.deviceUniqueIdentifier in 4.2 (it will return values different from before)
    you need to change Unity/DeviceSettings.mm:
    change
    CC_MD5(macaddr_str, sizeof(macaddr_str), hash_buf);
    to
    CC_MD5(macaddr_str, sizeof(macaddr_str)-1, hash_buf);
     
  2. MrEsquire

    MrEsquire

    Joined:
    Nov 5, 2013
    Posts:
    2,712
    Can we remove this sticky if this is resolved
     
    Miscellaneous likes this.
  3. Miscellaneous

    Miscellaneous

    Joined:
    Sep 24, 2013
    Posts:
    51
    Is this modification still required?