用AndroidStudio直接安装,装不上,但是换一个Android版本低的手机就没有问题
编辑器直接安装提示
Installation did not succeed.
The application could not be installed: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED
这个字面意思看是清单文件出问题了
从项目目录里面找到debug的包 发到手机上安装就提示
安装包解析失败
我的清单文件是这样的
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.SplashScreenTest">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
遇到问题 先问百度 百度给我的答案是这里出问题了
需要加上android:exported="true" 把activity暴露出去 具体原因暂时还不知道
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.SplashScreenTest">
<activity android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
改成这样之后 重新安装 就没问题了
记录一下