Open rinikaravinth opened 8 years ago
In android studio if you change the Android dropdown in the project panel to "Project" you can see all of the external libraries and reliance that are imported. You should be able to find the culprit package and exclude as neccessary.
You have a conflict with the packages you are importing. You can always scan your packages for overrides. Also try to drop your trace here for further analysis.
if more people with this problem, it resolved for me:
compile ('com.github.satyan:sugar:1.4'){
exclude module: 'guava'
}
My app level build.gradle is like this:
But when I build the project it raises 'Multiple dex files define Lcom/google/common/anotations/Beta And when I remove compile 'com.github.satyan:sugar:1.4' it builds without errror. What could be the reason?