# MyGreenDaoEventBus
**Repository Path**: SimenHi/MyGreenDaoEventBus
## Basic Information
- **Project Name**: MyGreenDaoEventBus
- **Description**: 基于 GreenDao EventBus 3.1.1
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2019-05-21
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# InvokeHelper
#### 项目介绍
基于 GreenDao EventBus 3.1.1,修改EventBus[扫描引用类导致闪退问题](https://github.com/greenrobot/EventBus/issues/149)
#### 使用说明
```xml
com.simen.greendao.eventbus
MyEventBus
1.1.1
```
```groovy
compile 'com.simen.greendao.eventbus:MyEventBus:1.1.1'
```
#### 混淆
```groovy
-keepattributes *Annotation*
-keepclassmembers class * {
@org.greenrobot.eventbus.Subscribe ;
}
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
# Only required if you use AsyncExecutor
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
(java.lang.Throwable);
}
```