public static string getAdid() { if (Adjust.IsEditor()) { return(string.Empty); } return(AdjustAndroid.GetAdid()); }
public static string getAdid() { if (IsEditor()) { return(string.Empty); } #if UNITY_IOS return(AdjustiOS.GetAdid()); #elif UNITY_ANDROID return(AdjustAndroid.GetAdid()); #elif (UNITY_WSA || UNITY_WP8) return(AdjustWindows.GetAdid()); #else Debug.Log(errorMsgPlatform); return(string.Empty); #endif }