-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
2 changed files
with
17 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
# http://greenrobot.org/eventbus/documentation/proguard/ | ||
-keepattributes *Annotation* | ||
-keepclassmembers class * { | ||
@org.greenrobot.eventbus.Subscribe <methods>; | ||
# http://greenrobot.org/greendao/documentation//technical-faq | ||
### greenDAO 3 | ||
-keepclassmembers class * extends org.greenrobot.greendao.AbstractDao { | ||
public static java.lang.String TABLENAME; | ||
} | ||
-keep enum org.greenrobot.eventbus.ThreadMode { *; } | ||
|
||
# Only required if you use AsyncExecutor | ||
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent { | ||
<init>(java.lang.Throwable); | ||
} | ||
-keep class **$Properties | ||
|
||
# If you do not use SQLCipher: | ||
-dontwarn org.greenrobot.greendao.database.** | ||
# If you do not use RxJava: | ||
-dontwarn rx.** | ||
|
||
### greenDAO 2 | ||
-keepclassmembers class * extends de.greenrobot.dao.AbstractDao { | ||
public static java.lang.String TABLENAME; | ||
} | ||
-keep class **$Properties |