Android 安卓安装软件时报错INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

报错信息:

INSTALL_PARSE_FAILED_MANIFEST_MALFORMED

 

原因:

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

 

解决方法:

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

     ..........

     tools:replace="android:appComponentFactory"
     android:appComponentFactory="任意字符" //任意字符,一定要有字符,不要是""

      .........

/>

 

你可能感兴趣的:(填坑)