這個一般都是依賴庫沖突造成的
查看是什么依賴庫重復依賴
gradlew :app:dependencies

image.png
- build.gradle 下過濾重復的依賴
implementation ('com.github.tbruyelle:rxpermissions:0.10.2'){
exclude group: 'com.android.support', module: 'support-compat'
}
這個一般都是依賴庫沖突造成的
查看是什么依賴庫重復依賴
gradlew :app:dependencies
implementation ('com.github.tbruyelle:rxpermissions:0.10.2'){
exclude group: 'com.android.support', module: 'support-compat'
}