diff --git a/.gitignore b/.gitignore index 09299e1add79963a2daba05d1d6f2f3436671e21..f100b28a3a4af1769182bc2281c41fc0883fa057 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Built application files *.apk +*.aar *.ap_ *.aab diff --git a/build.gradle b/build.gradle index efe0b5fdb19eae369093c2806dc0357d4814ead3..d9529dbfa623c84bc5a3289ccb727bd5731b7c8b 100644 --- a/build.gradle +++ b/build.gradle @@ -28,6 +28,7 @@ allprojects { groups.jitpack.group.each { includeGroup it } } } + maven { url 'https://gitlab.futo.org/api/v4/projects/130/packages/maven' } google { content { groups.google.regex.each { includeGroupByRegex it } diff --git a/matrix-sdk-android/build.gradle b/matrix-sdk-android/build.gradle index 4773d0ffa85edbac36a3f4cd86362d14fd724e3c..55c0794d36d71afc59ffd51de7dbca101aef155d 100644 --- a/matrix-sdk-android/build.gradle +++ b/matrix-sdk-android/build.gradle @@ -199,8 +199,8 @@ dependencies { //Bcrypt implementation 'at.favre.lib:bcrypt:0.9.0' - //rustCryptoImplementation("org.matrix.rustcomponents:crypto-android:0.3.15") - rustCryptoApi project(":library:rustCrypto") + rustCryptoImplementation("org.futo.rustcomponents:crypto-android:0.3.15.1") + //rustCryptoApi project(":library:rustCrypto") testImplementation libs.tests.junit // Note: version sticks to 1.9.2 due to https://github.com/mockk/mockk/issues/281 diff --git a/settings.gradle b/settings.gradle index e00832ffd63439c34504e397eb5fca87b33df9b0..ade79d3acbcdf34d414b5dec04630eb10e7eed67 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1 @@ include ':matrix-sdk-android' -include ':library:rustCrypto'