Hello I downloaded the Jitsi SDK sources from here
Ran the included script on my linux machine.
In the resulting repository two folders were created org
and com
. What do I do now?
How to do I publish it to maven?
So I renamed the folder to releases and published the repository. And I created a release as well by using the generated pom
and aar
files. Repository here
Now including this repo as implementation 'com.github.harshmandan:jitsi-meet-sdk:master-SNAPSHOT'
in my project doesn’t work. It throws this error:
> Could not resolve all files for configuration ':app:DBDebugRuntimeClasspath'.
> Could not resolve com.github.harshmandan:jitsi-meet-sdk:master-SNAPSHOT.
Required by:
project :app
> Could not resolve com.github.harshmandan:jitsi-meet-sdk:master-SNAPSHOT.
> Unable to load Maven meta-data from https://jitpack.io/com/github/harshmandan/jitsi-meet-sdk/master-SNAPSHOT/maven-metadata.xml.
> Could not get resource 'https://jitpack.io/com/github/harshmandan/jitsi-meet-sdk/master-SNAPSHOT/maven-metadata.xml'.
> Could not GET 'https://jitpack.io/com/github/harshmandan/jitsi-meet-sdk/master-SNAPSHOT/maven-metadata.xml'.
> Read timed out
I do not know how to publish the repo to maven. Can anyone help me what am I doing wrong?