Not a square library, but cashapp lib. Trying to ...
# squarelibraries
c
Not a square library, but cashapp lib. Trying to add
exhaustive
to my android app. I apparently suck at gradle. Docs say to add
Copy code
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
Copy code
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?