如果在kotlin中使用dataStore的时候,如果项目用到了协程,可能会产生一个kotlinx-coroutines-core-1.3.9.jar and kotlinx-coroutines-core-jvm-1.3.9.jar冲突的问题,是因为dataStore其中包含了协程,在gradle引用时候忽略掉即可
implementation('androidx.datastore:datastore-preferences:1.0.0-alpha04'){
excludegroup:'org.jetbrains.kotlinx',module:'kotlinx-coroutines-core'
excludegroup:'org.jetbrains.kotlinx',module:'kotlinx-coroutines-core-jvm'
}
网友评论