Android在kotlin中使用dataStore跟corou

2021-01-08  本文已影响0人  周惊蛰

如果在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'

}

上一篇 下一篇

猜你喜欢

热点阅读