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:
parent
0a326015ef
commit
59637c4a6b
|
@ -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)
|
Changes in Element 1.1.4 (2021-04-09)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
||||||
|
|
|
@ -6,10 +6,13 @@ apply plugin: 'realm-android'
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
// mavenCentral()
|
||||||
|
//noinspection GrDeprecatedAPIUsage
|
||||||
|
jcenter()
|
||||||
}
|
}
|
||||||
dependencies {
|
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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ kapt {
|
||||||
// Note: 2 digits max for each value
|
// Note: 2 digits max for each value
|
||||||
ext.versionMajor = 1
|
ext.versionMajor = 1
|
||||||
ext.versionMinor = 1
|
ext.versionMinor = 1
|
||||||
ext.versionPatch = 4
|
ext.versionPatch = 5
|
||||||
|
|
||||||
static def getGitTimestamp() {
|
static def getGitTimestamp() {
|
||||||
def cmd = 'git show -s --format=%ct'
|
def cmd = 'git show -s --format=%ct'
|
||||||
|
|
Loading…
Reference in New Issue