Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.jitsi:jitsi-android:'
}
dependencies {
implementation("com.github.jitsi:jitsi-android:")
}
<dependency>
<groupId>com.github.jitsi</groupId>
<artifactId>jitsi-android</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.jitsi" % "jitsi-android" % ""
:dependencies [[com.github.jitsi/jitsi-android ""]]
The development of Jitsi for Android has been stopped in early 2015. Issues and Pull Requests will not be addressed.
Jitsi for Android is an Android port of the Jitsi project: The most feature-rich communicator with support for encrypted audio/video, chat and presence over SIP and XMPP.
After updating library bundles, when building for the first time or after clean:
ant setup-libs
To make the project:
ant make
To rebuild (clean and make):
ant rebuild
To run the project (will install the apk and will run it on default test device):
ant run
To make and run the project after modification:
ant make run
To obtain sources for .jar files located in lib folder checkout jitsi_android branch of jitsi and libjitsi projects.
https://github.com/jitsi/jitsi/tree/jitsi_android
https://github.com/jitsi/libjitsi/tree/jitsi_android
Before making any pull requests please see: https://jitsi.org/Documentation/FAQ#patch