I'm having a problem in implement Jitsi Meat in my app
Android Studio says there are no releases from that library
This is my code
Implement code
implemention ('org.jitsi.react:jitsi-meet-sdk:+') { transitive = true }
Build.gradle (project)
buildscript {
repositories {
maven { url 'https://www.jitpack.io' }
maven {
url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
}
mavenCentral()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath 'com.google.gms:google-services:4.3.10'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
The Error
Could not find any matches for org.jitsi.react:jitsi-meet-sdk:+ as no versions of org.jitsi.react:jitsi-meet-sdk are available.
Required by:
project :app