After updating my Gradle version to 5.0+ where the compile keyword has been removed. This causes build errors working when you add this library due to the missing net.mediavrog.ruli classes this library depends on.
I was able to fix these build errors by adding the following to my list of dependencies
implementation 'net.mediavrog:ruli:1.1.0'
This is a fix on my end when really it should be fixed by migrating the gradle version for this library to 5.0+. I could do it, but the above fixed it for me and back to work I go sorry!
After updating my Gradle version to 5.0+ where the
compilekeyword has been removed. This causes build errors working when you add this library due to the missingnet.mediavrog.ruliclasses this library depends on.I was able to fix these build errors by adding the following to my list of dependencies
This is a fix on my end when really it should be fixed by migrating the gradle version for this library to 5.0+. I could do it, but the above fixed it for me and back to work I go sorry!