其他分享
首页 > 其他分享> > androidx遇到的坑INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

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="任意字符" //任意字符,一定要有字符,不要是""

标签:字符,MALFORMED,androidx,MANIFEST,PARSE,FAILED,INSTALL
来源: https://blog.csdn.net/jason421017/article/details/111995695