This commit is contained in:
zhongchao
2022-03-22 10:07:10 +08:00
parent 3a14b5e37d
commit a39f310331
42 changed files with 1317 additions and 201 deletions

View File

@@ -79,4 +79,14 @@ interface IDevaToolsProvider : IMoGoFunctionServerProvider {
* 展示反馈页面
*/
fun showFeedbackWindow(ctx: Context)
/**
* 获取升级版本Urls
*/
fun getUpgradeVersionUrls(versionName: String)
/**
* 下载指定包
*/
fun downLoadPackage(downLoadKey:String)
}

View File

@@ -24,4 +24,9 @@ interface IMoGoDevaToolsListener {
* 模块TAG更新回调
*/
fun moduleLogChanged(moduleTag: MutableMap<String, SceneModule>)
/**
* 版本升级Urls
*/
fun upgradeVersionUrls(urls: Map<String, String>?)
}