修复tapDB初始化参数错误的问题
parent
3cd56b6ccc
commit
cabc456d73
|
@ -2,6 +2,12 @@
|
|||
local this = TapDBManager
|
||||
function this.Initialize()
|
||||
if AppConst.isSDK then
|
||||
local appId = "wjtsq7xrwb48t2uw"
|
||||
local channel = VersionManager:GetVersionInfo("channel")
|
||||
local subChannel = VersionManager:GetVersionInfo("subChannel")
|
||||
local version = VersionManager:GetVersionInfo("version")
|
||||
Debug.log("TapDBManager init: "..appId.."|"..channel.."_"..subChannel.."|"..version)
|
||||
App.TBDMgr:Init(appId, channel.."_"..subChannel, version)
|
||||
App.TBDMgr:OnStart()
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue