I made a topic some hours ago that lead me to a public repository : https://github.com/biezhi/webp-io
However, I had to update the library used, cwebp and make changes to the code. Its my first fork.
My fork is located here: https://github.com/KenobySky/webp-io
maven {url "https://jitpack.io"}
...
compile 'com.github.KenobySky:webp-io:master'
Question: Im trying to declare this 'fork' git repository as dependency in gradle but I get this error below, what should I do ?
Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
> Could not find com.github.KenobySky:webp-io:master.
Searched in the following locations:
- https://repo.maven.apache.org/maven2/com/github/KenobySky/webp-io/master/webp-io-master.pom
If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
Required by:
project :
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
References
Is it possible to declare git repository as dependency in android gradle?