Compare commits
2 Commits
b305fd3ab8
...
d2bdbcdc26
| Author | SHA1 | Date |
|---|---|---|
|
|
d2bdbcdc26 | |
|
|
084c639ae9 |
|
|
@ -155,6 +155,9 @@ namespace WZ
|
||||||
}else if (_configs[i].Key.ToLower() == KEY_THINKDATA_ID.ToLower())
|
}else if (_configs[i].Key.ToLower() == KEY_THINKDATA_ID.ToLower())
|
||||||
{
|
{
|
||||||
StaticValue.TDAppID = valueTemp;
|
StaticValue.TDAppID = valueTemp;
|
||||||
|
}else if (_configs[i].Key.ToLower() == KEY_THINKDATA_SS_URL.ToLower())
|
||||||
|
{
|
||||||
|
StaticValue.TDServerURL = valueTemp;
|
||||||
}else if (_configs[i].Key.ToLower() == KEY_Max_Inter.ToLower())
|
}else if (_configs[i].Key.ToLower() == KEY_Max_Inter.ToLower())
|
||||||
{
|
{
|
||||||
StaticValue.InterAdUnitID = valueTemp;
|
StaticValue.InterAdUnitID = valueTemp;
|
||||||
|
|
@ -306,6 +309,7 @@ namespace WZ
|
||||||
public const string KEY_Admob_InterId = "Admob_IV_ID";
|
public const string KEY_Admob_InterId = "Admob_IV_ID";
|
||||||
public const string KEY_PRIVACY_URL = "tka_url_privacy";
|
public const string KEY_PRIVACY_URL = "tka_url_privacy";
|
||||||
public const string KEY_THINKDATA_ID = "ss_app_id";
|
public const string KEY_THINKDATA_ID = "ss_app_id";
|
||||||
|
public const string KEY_THINKDATA_SS_URL = "ss_url";
|
||||||
public const string KEY_ADJUST_ID = "adjust_id";
|
public const string KEY_ADJUST_ID = "adjust_id";
|
||||||
public const string KEY_TopOn_AppId = "ad_appid";
|
public const string KEY_TopOn_AppId = "ad_appid";
|
||||||
public const string KEY_TopOn_Reward = "AD_Reward";
|
public const string KEY_TopOn_Reward = "AD_Reward";
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ namespace WZ
|
||||||
//开启自动采集事件
|
//开启自动采集事件
|
||||||
TDAnalytics.EnableAutoTrack(TDAutoTrackEventType.AppInstall | TDAutoTrackEventType.AppStart | TDAutoTrackEventType.AppEnd);
|
TDAnalytics.EnableAutoTrack(TDAutoTrackEventType.AppInstall | TDAutoTrackEventType.AppStart | TDAutoTrackEventType.AppEnd);
|
||||||
//如果用户已登录,可以设置用户的账号ID作为身份唯一标识
|
//如果用户已登录,可以设置用户的账号ID作为身份唯一标识
|
||||||
TDAnalytics.Login("TA");
|
// TDAnalytics.Login("TA");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue