📌  相关文章
📜  合并 dex 档案时出错 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:33.760000             🧑  作者: Mango

代码示例1
com.parse.AbstractQueryController module is used by multiple library

in your case it must be com.parse:parse-livequery-android:1.0.6 and com.github.parse-community.Parse-SDK-Android:parse:1.19.0

To find the list of dependencies for the module app (default module's name for the app) we can do a

gradlew app:dependencies

to retrieve a list of all the libraries.

after you found module that used twice with different versions exclude it like this

implementation ('com.parse:parse-livequery-android:1.0.6') {
    exclude module: 'duplicated module'
}