screenshotty
screenshotty copied to clipboard
Could not find eu.bolt:screenshotty-rx-lib:1.0.4
Gradle can't find the library
I'm using Gradle in the version 4.1.3
Same issue here. Can build all of the other libs without any problems. Android Studio IDE is also happy with sample.MainActivity's import that references eu.bolt.screenshotty.rx
. Have spent way too much time internet searching for solution with out any luck.
Use this instead
dependencies {
// implementation deps.libs.screenshotty
// implementation deps.libs.screenshottyRx
implementation project(":screenshotty-lib")
implementation project(":screenshotty-rx-lib")
implementation deps.libs.appCompat
implementation deps.libs.kotlin
implementation deps.libs.rxJava
}