2020-07-10 19:13:29 +08:00
|
|
|
|
ThinkingAnalyticsManager = {}
|
2020-06-30 18:59:44 +08:00
|
|
|
|
local this = ThinkingAnalyticsManager
|
|
|
|
|
|
Dictionary = System.Collections.Generic.Dictionary
|
|
|
|
|
|
|
|
|
|
|
|
function this.Initialize()
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function this.Track()
|
|
|
|
|
|
-- local d = Dictionary.New()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- d:Add("testKey", "testValue")
|
|
|
|
|
|
-- -- App.TAMgr:ClearSuperProperties()
|
|
|
|
|
|
-- App.TAMgr:Track("test_event", "testKey#testValue")
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ThinkingAnalyticsManager
|