mirror of https://github.com/axmolengine/axmol.git
Merge pull request #9791 from yinjimmy/runtime
update google analytics tid
This commit is contained in:
commit
7407105f24
|
@ -213,6 +213,7 @@ void StartupCall::startup()
|
|||
trackLaunchEvent();
|
||||
}
|
||||
|
||||
//
|
||||
// *NOTE*
|
||||
// track event on windows / mac platform
|
||||
//
|
||||
|
@ -232,7 +233,7 @@ void StartupCall::trackEvent(const char *eventName)
|
|||
"http://www.google-analytics.com/collect",
|
||||
kCCHTTPRequestMethodPOST);
|
||||
request->addPOSTValue("v", "1");
|
||||
request->addPOSTValue("tid", "UA-55061270-1");
|
||||
request->addPOSTValue("tid", "UA-58200293-1");
|
||||
request->addPOSTValue("cid", player::DeviceEx::getInstance()->getUserGUID().c_str());
|
||||
request->addPOSTValue("t", "event");
|
||||
|
||||
|
|
Loading…
Reference in New Issue