Android resource linking failed
C:\Users\David\PAP\app\build\intermediates\merged_manifests\debug\AndroidManifest.xml:33: error: unexpected element <category> found in <manifest><application>.
答案 0 :(得分:1)
读取错误。 AAPT会告诉您什么地方出了问题以及什么文件:
C:\Users\David\PAP\app\build\intermediates\merged_manifests\debug\AndroidManifest.xml:33: error: unexpected element <category> found in <manifest><application>.
转到项目中的清单文件。最有可能在app/src/main/AndroidManifest.xml
中。然后尝试解决错误unexpected element <category> found in <manifest><application>
。这意味着<category>
标签位于不允许的位置。更多或删除它以符合official developers page上的规范。
尤其是,<category>
只是<intent-filter>
标签下的allowed。