Encryption icon indicating copy to clipboard operation
Encryption copied to clipboard

Build at JitPack failed

Open erik-everardo opened this issue 6 months ago • 1 comments

The build at JitPack is failing, resulting in errores when building apps.

https://jitpack.io/com/github/simbiose/Encryption/2.0.1/build.log

https://github.com/jitpack/jitpack.io/issues/7232

erik-everardo avatar Jun 25 '25 21:06 erik-everardo

The dependency fails because JitPack publishes the artifact with a lowercase artifactId. Simply change the coordinates from an uppercase “E” to lowercase:

gradle // old (fails) implementation "com.github.simbiose:Encryption:2.0.1"

// new (works) implementation "com.github.simbiose:encryption:2.0.1" No other changes are required—the artifact downloads correctly once the lowercase encryption is used.

amed12 avatar Jul 17 '25 07:07 amed12