美文网首页
Android在kotlin中使用dataStore跟corou

Android在kotlin中使用dataStore跟corou

作者: 周惊蛰 | 来源:发表于2021-01-08 17:56 被阅读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'

}

相关文章

网友评论

      本文标题:Android在kotlin中使用dataStore跟corou

      本文链接:https://www.haomeiwen.com/subject/qzvfaktx.html