public static void LogError(object message) { if (Application.platform == RuntimePlatform.Android) { AN_Logger.LogError(message); } else { ISN_Logger.LogError(message); } }
public ISN_SKAppStoreReceipt(string data) { if (data.Length > 0) { try { m_data = System.Convert.FromBase64String(data); m_receiptString = data; } catch (System.Exception ex) { ISN_Logger.LogError("Can't parce the receipt: " + ex.Message); } } }