Colton Idle
05/24/2021, 2:25 AMexhaustive
to my android app. I apparently suck at gradle.
Docs say to add
buildscript {
dependencies {
classpath 'app.cash.exhaustive:exhaustive-gradle:0.1.1'
}
repositories {
mavenCentral()
}
}
and so I added that classpath line to my root build.gradle. Then I went into my app module and added this
apply plugin: 'org.jetbrains.kotlin.jvm' <--- I also tried .android
apply plugin: 'app.cash.exhaustive'
but now I get an error regarding hilt. Am I missing someting? Should the plugin apply statements instead be in my root?