在使用了百度开放接口的一段代码后,出现了如题所示的问题,Android包冲突了,这里有两个解决方式:
1.一般情况下,我们在AndroidStudio中的左侧的工程树中,找到external library,然后将其中一个冲突的jar包删除即可。
2.如果以上方式无法解决,我的情况就是如此,删除以后,每次编译,还是会自动下载下来,那么就使用第二种方式:
在build.gradle文件中加入排除语句,这里请以我的为准,很多其他的排除语句似乎都不好使。
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation