:app:dexDebug ExecException finished with non-zero exit value 2

前端 未结 13 1217
孤独总比滥情好
孤独总比滥情好 2020-11-28 13:44

Could anyone help me out with the following error. When i clean the project, it doesn\'t show any error but every time i try to run i get this message.

Error:Execut

相关标签:
13条回答
  • 2020-11-28 14:14

    Remove compile 'com.parse:parse-android:1.+'

    add this linecompile fileTree(dir: 'libs', include: ['Parse-*.jar'])

    Finally, it will look like this

    dependencies {
    compile fileTree(dir: 'libs', include: ['Parse-*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.facebook.android:facebook-android-sdk:4.5.0'
    compile 'com.android.support:design:22.2.0'
    compile 'com.parse.bolts:bolts-android:1.+'
    }
    
    0 讨论(0)
提交回复
热议问题