19 lines
387 B
Lua
19 lines
387 B
Lua
ThinkingAnalyticsManager = {}
|
|
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 |