Closed mariolon closed 3 years ago
It was probably a temporary issue. You closed it because it's fixed now?
It was probably a temporary issue. You closed it because it's fixed now?
@bmarty
The issue was that the MatrixSDK used old path to jitsi on jCenter which no longer exists. So the solution was to exclude the path from the library and use jitsi that is hosted on https://github.com/vector-im/jitsi_libre_maven
.
Specifically,
implementation ('com.github.matrix-org:matrix-android-sdk:v0.9.32') {
exclude group: 'com.facebook.react', module: 'react-native-webrtc'
}
maven {
url "https://github.com/vector-im/jitsi_libre_maven/raw/master/releases"
}
Luckily that repo still exists! :)
Thanks for the help anyway! :)
Hello,
I am facing an issue regarding
com.facebook.react:react-native-webrtc:1.69.2-jitsi-2062090
(check snippet below). Seems like it is removed from jCenter so I am unable to build application with Matrix SDK since it cannot fetch the dependency anymore. This is a big issue at the moment since basically I am stuck with development and CI also won't create builds and migration to Matrix2 is currently difficult to make since there is no guide or similarities between Matrix1 and Matrix2. Is there any other place where Matrix SDK and all of its dependencies are hosted and can be used even though it is deprecated? Or is there any other solution besides switching to Matrix2?Any help would be appreciated! Thank you
Mario