googleanalytics / google-analytics-plugin-for-unity

Google Analytics plugin for the Unity game creation system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GoogleAnalyticsV3/HitBuilders/ItemHitBuilder.cs GetSKU returns wrong value

sdetwiler opened this issue · comments

GetSKU() does not return the value passed to SetSKU(). This results in improper revenue attribution in Google Analytics Dashboards.

  public string GetSKU() {
    return name;
  }

  public ItemHitBuilder SetSKU(string SKU) {
    if(SKU != null){
      this.SKU = SKU;
    }
    return this;
  }

Any update on this? Facing the same issue in V4.