Skip to content

Commit

Permalink
nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaojinzi123 committed Dec 15, 2023
1 parent fdec93b commit e3ef606
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ object ModuleManager {
// 标记已经注册
moduleApplicationMap[module.moduleName] = module
// 模块的 Application 的 onCreate 执行
// 服务发现会在这个阶段完成
module.onCreate(app = getApplication())
// 路由的部分的注册, 可选的异步还是同步
val r = Runnable {
Expand All @@ -92,6 +93,8 @@ object ModuleManager {
moduleName = module.moduleName,
fragmentModule = module,
)
// 对一个模块中没有标记任何注解的情况进行 debug 报错

notifyModuleChanged()
}
// 路由是否异步初始化
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class KComponentPlugin : Plugin<Project> {
@get:CompileClasspath
abstract var classpath: FileCollection

var isMergeOutputFileStr = project
private var isMergeOutputFileStr = project
.properties["kcomponent_isMergeOutputFile"]
?.toString() ?: ""

Expand Down

0 comments on commit e3ef606

Please sign in to comment.