AwesomeQRCode icon indicating copy to clipboard operation
AwesomeQRCode copied to clipboard

Could not find com.waynejo:androidndkgif:0.3.3

Open bboyzlodey opened this issue 3 years ago • 3 comments

Hello! Bintray repo for dependency com.waynejo:androidndkgif:0.3.3 not work. Please fix it

Execution failed for task ':app:mergeDebugNativeLibs'.

Could not resolve all files for configuration ':app:debugRuntimeClasspath'. Could not find com.waynejo:androidndkgif:0.3.3. Searched in the following locations: - https://dl.google.com/dl/android/maven2/com/waynejo/androidndkgif/0.3.3/androidndkgif-0.3.3.pom - https://repo.maven.apache.org/maven2/com/waynejo/androidndkgif/0.3.3/androidndkgif-0.3.3.pom - https://jitpack.io/com/waynejo/androidndkgif/0.3.3/androidndkgif-0.3.3.pom Required by: project :app > com.github.SumiMakito:AwesomeQRCode:1.2.0

bboyzlodey avatar Aug 23 '21 14:08 bboyzlodey

hello what alternatives did you use?

ArthurKun21 avatar Jan 04 '22 09:01 ArthurKun21

Hi, this issue is still continuing, anybody found any solution?

mustafaberk1996 avatar Jan 19 '22 15:01 mustafaberk1996

Hi, this issue is still continuing, anybody found any solution?

Just replace module in dependency in your build.gradle:

    implementation ('com.github.SumiMakito:AwesomeQRCode:1.2.0'){
        exclude group: 'com.waynejo', module: 'androidndkgif' // exclude jcenter module
    }
    implementation 'io.github.waynejo:androidndkgif:1.0.1' // add updated module from mavenCentral

Moreover, if you don't use animated background in QR, you can skip attaching this library. This saves ~100kb for me on each platform for optimized build. Build will be OK, but app can crash in runtime with UnsatisfiedLinkError: dlopen failed: library "libandroidndkgif.so" not found in case of any GifBackground usage.

ArtRoman avatar Feb 04 '22 19:02 ArtRoman