问题:

安装了一个新包,android出现了报错,建议add 'tools:replace="android:label"'。

原因:

项目application的label属性冲突导致

解决办法:

在android/app/src/main/AndroidManifest.xml文件中添加

<application
        ......
        ......
     // 添加下面两行 xmlns:tools
="http://schemas.android.com/tools" tools:replace="label" ...... ...... > ............ ............ </application>

 

END-------------------

火车驶向云外,梦安魂于九霄

 

相关文章:

  • 2022-12-23
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-24
  • 2022-12-23
  • 2021-07-26
  • 2021-10-29
  • 2021-09-04
  • 2021-09-16
  • 2021-08-13
相关资源
相似解决方案