diff options
author | Docile-Alligator <chineseperson5@gmail.com> | 2020-06-22 15:41:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 15:41:20 +0000 |
commit | 405cac91e81d3cc2219a7c9e7163ff079e6d0e7a (patch) | |
tree | 5250a0aeb92c5e8a94bfa2f855ff5c8b9c0d9a2d /app/build.gradle | |
parent | eda7a64c14cf83a1a0647cab831b00e434d7edc2 (diff) | |
parent | dc39cb72afe70dbc6a42ef6a62669dda5603c2c5 (diff) | |
download | infinity-for-reddit-405cac91e81d3cc2219a7c9e7163ff079e6d0e7a.tar infinity-for-reddit-405cac91e81d3cc2219a7c9e7163ff079e6d0e7a.tar.gz infinity-for-reddit-405cac91e81d3cc2219a7c9e7163ff079e6d0e7a.tar.bz2 infinity-for-reddit-405cac91e81d3cc2219a7c9e7163ff079e6d0e7a.tar.lz infinity-for-reddit-405cac91e81d3cc2219a7c9e7163ff079e6d0e7a.tar.xz infinity-for-reddit-405cac91e81d3cc2219a7c9e7163ff079e6d0e7a.tar.zst infinity-for-reddit-405cac91e81d3cc2219a7c9e7163ff079e6d0e7a.zip |
Merge pull request #140 from OHermesJunior/eventbus-index
Enable EventBus Index, avoids reflection, and better performance.
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 0775b8cb..76f05962 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,6 +9,11 @@ android { versionCode 35 versionName "3.2.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + javaCompileOptions { + annotationProcessorOptions { + arguments = [ eventBusIndex : 'ml.docilealligator.inifinityforreddit.EventBusIndex' ] + } + } } buildTypes { release { @@ -67,7 +72,10 @@ dependencies { implementation 'io.noties.markwon:recycler-table:4.3.1' implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.19' implementation 'com.github.Ferfalk:SimpleSearchView:0.1.4' - implementation 'org.greenrobot:eventbus:3.2.0' + + def eventbusVersion = '3.2.0' + implementation "org.greenrobot:eventbus:$eventbusVersion" + annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbusVersion" implementation 'com.libRG:customtextview:2.4' implementation 'com.github.Deishelon:RoundedBottomSheet:1.0.1' implementation 'com.github.livefront:bridge:v1.2.1' |