本文介绍了安装错误:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED code包括的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
好了,所以我一直在寻找和搜索,并没有发现任何帮助。当我启动AVD,它说:
Okay, so I have been searching and searching and have not found any help. When I launch the AVD, it says:
No Launcher activity found!
The launch will only sync the application package on the device!
一旦仿真器打开,这出现了。
Once the emulator opens, this comes up.
Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED
我是pretty确保我AndroidManifest是正确的:
I'm pretty sure that my AndroidManifest is correct:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mshaw.avanos"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
<activity
android:name=".AvanosActivity"
android:label="@string/app_name"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.CALL" />
</intent-filter>
</activity>
</application>
这是什么问题?
推荐答案
您应用
和活动
标签都没有结束方式&gt;
尝试:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mshaw.avanos"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity
android:name=".AvanosActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.CALL" />
</intent-filter>
</activity>
</application>
这篇关于安装错误:INSTALL_PARSE_FAILED_MANIFEST_MALFORMED code包括的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!