Encryption
Encryption copied to clipboard
Build at JitPack failed
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
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.