screenshotty icon indicating copy to clipboard operation
screenshotty copied to clipboard

Could not find eu.bolt:screenshotty-rx-lib:1.0.4

Open BenBinary opened this issue 2 years ago • 3 comments

Gradle can't find the library

image

BenBinary avatar Mar 22 '22 15:03 BenBinary

I'm using Gradle in the version 4.1.3

BenBinary avatar Mar 23 '22 08:03 BenBinary

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.

sdunnin avatar Nov 03 '22 20:11 sdunnin

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
}

minhdangoz avatar Aug 20 '23 06:08 minhdangoz