Revert to Realm 10.3.1 to fix issue with migration

Waiting for https://github.com/realm/realm-java/issues/7402
This commit is contained in:
Benoit Marty 2021-04-14 21:30:29 +02:00
parent 0a326015ef
commit 59637c4a6b
3 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,9 @@
Changes in Element 1.1.5 (2021-XX-XX)
===================================================
Bugfix 🐛:
- Fix crash during Realm migration
Changes in Element 1.1.4 (2021-04-09)
===================================================

View file

@ -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"
}
}

View file

@ -14,7 +14,7 @@ kapt {
// Note: 2 digits max for each value
ext.versionMajor = 1
ext.versionMinor = 1
ext.versionPatch = 4
ext.versionPatch = 5
static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'