diff --git a/CHANGES.md b/CHANGES.md
index 8d3820ea8f39d2695d53ce8db7597cd885d8a543..d2c9bf8515fcd05aa6e24e15e896072bedb531dd 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,10 @@
 Please also refer to the Changelog of Element Android: https://github.com/vector-im/element-android/blob/master/CHANGES.md
 
+Changes in Matrix-SDK 1.1.5 (2021-04-15)
+===================================================
+
+Imported from Element 1.1.5. (https://github.com/vector-im/element-android/releases/tag/v1.1.5)
+
 Changes in Matrix-SDK 1.1.4 (2021-04-09)
 ===================================================
 
diff --git a/matrix-sdk-android/build.gradle b/matrix-sdk-android/build.gradle
index 883f83783da485766e2ff3d10ce567a9e1b75ff6..046846e5c140ca94a00f8a0b2f4a851f6d958644 100644
--- a/matrix-sdk-android/build.gradle
+++ b/matrix-sdk-android/build.gradle
@@ -6,10 +6,13 @@ apply plugin: 'realm-android'
 
 buildscript {
     repositories {
-        mavenCentral()
+        // mavenCentral()
+        //noinspection GrDeprecatedAPIUsage
+        jcenter()
     }
     dependencies {
-        classpath "io.realm:realm-gradle-plugin:10.4.0"
+        // Stick to this version until https://github.com/realm/realm-java/issues/7402 is fixed
+        classpath "io.realm:realm-gradle-plugin:10.3.1"
     }
 }
 
@@ -21,7 +24,7 @@ android {
         minSdkVersion 21
         targetSdkVersion 30
         versionCode 1
-        versionName "1.1.4"
+        versionName "1.1.5"
         // Multidex is useful for tests
         multiDexEnabled true
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"