AppJoint icon indicating copy to clipboard operation
AppJoint copied to clipboard

apply plugin 添加顺序不同出现的bug

Open lijianyu opened this issue 5 years ago • 1 comments

下面是我碰到的问题: 如果按照以下引用方式, 在 module 中使用 @ModuleSpec 的 application 是不会走 onCreate 方法 apply plugin: 'com.android.application' apply plugin: 'android-aspectjx' apply plugin: 'app-joint'

修改成: apply plugin: 'com.android.application' apply plugin: 'app-joint' apply plugin: 'android-aspectjx' 正确调用

lijianyu avatar Dec 11 '19 06:12 lijianyu

这个问题确实存在,目前我也在想有什么方法可以避免这种情况

PrototypeZ avatar Jan 08 '20 11:01 PrototypeZ