Duplicate entry using Parse and Multidex

后端 未结 2 1826
孤街浪徒
孤街浪徒 2021-01-03 05:17

My project is a Chat app that uses Parse. After added other dependencies, this problem started appearing:

Error:Execution failed for task \':app:dexDe

2条回答
  •  既然无缘
    2021-01-03 05:52

    try to change this:

    compile('com.android.support:multidex:1.0.0') {
            exclude group: 'com.parse.bolts',
                    module: 'bolts-android'
        }
    

    To this:

    compile('com.android.support:multidex:1.0.0');
    

    the bolds module is used sometimes to fix Duplicated dexLibs

    Regards

提交回复
热议问题