diff options
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index d44a17d9..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 { @@ -40,7 +45,7 @@ dependencies { implementation "androidx.room:room-runtime:$roomVersion" annotationProcessor "androidx.room:room-compiler:$roomVersion" implementation 'androidx.work:work-runtime:2.3.4' - implementation 'com.google.android.material:material:1.2.0-alpha05' + implementation 'com.google.android.material:material:1.3.0-alpha01' implementation 'com.google.android.exoplayer:exoplayer-core:2.10.4' implementation 'com.google.android.exoplayer:exoplayer-hls:2.10.4' @@ -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' @@ -82,7 +90,9 @@ dependencies { def toroVersion = '3.7.0.2010003' implementation "im.ene.toro3:toro:$toroVersion" - implementation "im.ene.toro3:toro-ext-exoplayer:$toroVersion" + implementation("im.ene.toro3:toro-ext-exoplayer:$toroVersion") { + exclude module: 'extension-ima' + } testImplementation 'junit:junit:4.13' androidTestImplementation 'androidx.test:runner:1.2.0' |