We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to create a new project and use jitsi_meet_wrapper: ^0.0.6 . gradle sync is failed with Failed to resolve: org.jitsi.react:jitsi-meet-sdk:7.0.1
Using below configuration in project
`buildscript { ext.kotlin_version = '1.7.10' repositories { google() mavenCentral() }
dependencies { classpath 'com.android.tools.build:gradle:7.4.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" }
}
allprojects { repositories { maven { url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases" } google() mavenCentral() maven { url 'https://www.jitpack.io' } } }
rootProject.buildDir = '../build' subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } subprojects { project.evaluationDependsOn(':app') }
task clean(type: Delete) { delete rootProject.buildDir } `
The text was updated successfully, but these errors were encountered:
Getting this error
`Execution failed for task ':app:checkDebugAarMetadata'.
Could not resolve all files for configuration ':app:debugRuntimeClasspath'. Could not resolve org.jitsi.react:jitsi-meet-sdk:7.0.1. Required by: project :app > project :jitsi_meet_wrapper > Could not resolve org.jitsi.react:jitsi-meet-sdk:7.0.1. > Could not get resource 'https://github.com/jitsi/jitsi-maven-repository/raw/master/releases/org/jitsi/react/jitsi-meet-sdk/7.0.1/jitsi-meet-sdk-7.0.1.pom'. > Could not GET 'https://raw.githubusercontent.com/jitsi/jitsi-maven-repository/master/releases/org/jitsi/react/jitsi-meet-sdk/7.0.1/jitsi-meet-sdk-7.0.1.pom'. > Connect to raw.githubusercontent.com:443 [raw.githubusercontent.com/49.44.79.236, raw.githubusercontent.com/2405:200:1607:2820:41:0:0:36] failed: connect timed out`
Sorry, something went wrong.
Hey there,
please try the newest release and create a reproducible example if it still does not work.
No branches or pull requests
Trying to create a new project and use jitsi_meet_wrapper: ^0.0.6 . gradle sync is failed with Failed to resolve: org.jitsi.react:jitsi-meet-sdk:7.0.1
Using below configuration in project
`buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
}
allprojects {
repositories {
maven {
url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
}
google()
mavenCentral()
maven { url 'https://www.jitpack.io' }
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
`
The text was updated successfully, but these errors were encountered: