Open ElegyD opened 1 year ago
I'm having the same issue!!
I have the same error. I tried kotlinx-coroutines-core:1.7.x, 1.8.0
Also have the same issue
this solves the issue:
configurations.all {
resolutionStrategy {
force("org.jetbrains:annotations:13.0")
}
}
@ElegyD did you find a solution?
How frequently does the bug occur?
Always
Description
I have updated my app dependencies and some now depend on
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1
andorg.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1
. Before, they were version 1.6.4. When building the project now, Realm throws an errorField "xyz" of type "@org.jetbrains.annotations.Nullable byte[]" is not supported
. Fieldxyz
being a variable of aRealmObject
implemented in Kotlin (var xyz: ByteArray? = null
).I tried updating both to the latest version (as of now 1.7.3) but the issue remains. When explicitly downgrading to version 1.6.4 it works again:
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4!!")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4!!")
The release notes of kotlinx-coroutines 1.7.0 list some breaking changes, but I haven't been able to find more details.
Stacktrace & log output
Can you reproduce the bug?
Always
Reproduction Steps
org.jetbrains.kotlinx:kotlinx-coroutines-core
and/ororg.jetbrains.kotlinx:kotlinx-coroutines-android
dependency with a version >= 1.7.0:implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
ByteArray?
and a default value ofnull
:var foo: ByteArray? = null
Version
10.17.0
What Atlas App Services are you using?
Local Database only
Are you using encryption?
No
Platform OS and version(s)
Android 14, SDK 34
Build environment
Android Studio version: Giraffe 2022.3.1 Patch 2 Android Build Tools version: 33.0.1 Gradle version: 8.0 Kotlin & kapt version: 1.9.0