mirror of
https://github.com/tijder/SmsMatrix.git
synced 2024-10-27 18:24:01 +00:00
Matrix SDK library is now built and hosted by Jitpack
This commit is contained in:
parent
2b8b3a4e7c
commit
85e79ced3a
@ -44,10 +44,8 @@ dependencies {
|
||||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||||
testImplementation 'junit:junit:4.12'
|
||||
|
||||
implementation(name: 'matrix-sdk', ext: 'aar')
|
||||
implementation(name: 'matrix-sdk-core', ext: 'aar')
|
||||
implementation(name: 'matrix-sdk-crypto', ext: 'aar')
|
||||
implementation(name: 'olm-sdk', ext: 'aar')
|
||||
/************* Matrix SDK management **************/
|
||||
implementation 'com.github.Bubu:matrix-android-sdk:v0.9.30-no-webrtc'
|
||||
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13
build.gradle
13
build.gradle
@ -19,6 +19,19 @@ buildscript {
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
// For Matrix Android SDK.
|
||||
// This has to be declared first, to ensure that Matrix Android SDK library is not downloaded from another repo
|
||||
maven {
|
||||
url 'https://jitpack.io'
|
||||
content {
|
||||
// Use this repo only for matrix SDK library
|
||||
includeGroupByRegex "com\\.github\\.Bubu"
|
||||
// Also add subgroups, due to SDK split into modules
|
||||
includeGroupByRegex "com\\.github\\.Bubu\\.matrix-android-sdk"
|
||||
// And Olm library
|
||||
includeGroupByRegex "org\\.matrix\\.gitlab\\.matrix-org"
|
||||
}
|
||||
}
|
||||
google()
|
||||
jcenter()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user