单一app内的用法
如果你在单一app内进行多进程开发,那么只需要做以下三步:
Step 1
在gradle文件中加入下面的依赖:
-
dependencies {
-
compile 'xiaofei.library:hermes-eventbus:0.1.1'
-
}
Step 2
在Application的onCreate中加上以下语句进行初始化:
HermesEventBus.getDefault().init(this);
Step 3
每次使用EventBus的时候,用HermesEventBus代替EventBus。
-
HermesEventBus.getDefault().register(this);
-
HermesEventBus.getDefault().post(new Event())