修复tapDB初始化参数错误的问题

dev_chengFeng
JieLing 2020-07-26 15:55:21 +08:00 committed by gaoxin
parent 3cd56b6ccc
commit cabc456d73
1 changed files with 6 additions and 0 deletions

View File

@ -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