ARouter icon indicating copy to clipboard operation
ARouter copied to clipboard

It's outrageous, why is it strongly related to the calling order of the code:

Open quibbler01 opened this issue 2 years ago • 0 comments

It's outrageous, why is it strongly related to the calling order of the code:

first init initialization, then open the log, there is no way to jump.

         ARouter.init(this)

        if (BuildConfig.DEBUG) {
            ARouter.debuggable()
            ARouter.openDebug()
            ARouter.openLog()
        }

but this is ok:

        if (BuildConfig.DEBUG) {
            ARouter.debuggable()
            ARouter.openDebug()
            ARouter.openLog()
        }

        ARouter.init(this)

quibbler01 avatar Apr 04 '23 02:04 quibbler01