androidx遇到的坑INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

androidx遇到的坑

原帖 :https://blog.csdn.net/qq_39587209/article/details/104797466

真机运行一直报错
报错信息:
INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

Failed to commit install session 2048321505 with command cmd package install-commit 2048321505. Error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED: Failed parse during installPackageLI: /data/app/vmdl2048321505.tmp/base.apk (at Binary XML file line #121):

原因:

Manifest文件配置出错,错误是由于使用Androidx导致的。

解决方法:

在Manifest.xml里面的application加上下面的内容:

 tools:replace="android:appComponentFactory"
  android:appComponentFactory="任意字符" //任意字符,一定要有字符,不要是""
上一篇:java学习之Date类家族


下一篇:node中的url模块