Android报错Manifest merger failed with multiple errors, see logs

一、是导入依赖包的版本问题

二、需要导入28以上的版本,于是我写成以下形式

implementation 'com.android.support:appcompat-v7:28+'

 

但是还是报错,应该写成
implementation 'com.android.support:appcompat-v7:28.0.0'

没错了

猜你喜欢

转载自blog.csdn.net/weixin_52213234/article/details/127848441