为什么会发生INSTALL_PARSE_FAILED_MANIFEST_MALFORMED?

时间:2014-11-06 19:36:26

标签: android manifest

我在运行我的应用程序后发生这种情况: pkg:/data/local/tmp/com.example.calculator.app 失败[INSTALL_PARSE_FAILED_MANIFEST_MALFORMED]

我可能删除或更改了某些内容,但我不知道...

我的清单:

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.calculator.app" >

    <application

        android:icon="@drawable/studenticon128"
        android:label="@string/app_name"
        android:theme="@style/SelectedStyle" >
        <activity
            android:theme="@style/SelectedStyle"
            android:name="com.example.calculator.app.MainScreen"
            android:label="@string/app_name" >
            >
            <meta-data android:name="android.support.UI_OPTIONS"
                />
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>


        <activity

            android:uiOptions="splitActionBarWhenNarrow"
            android:name="com.example.calculator.app.Analysis"
            android:label="@string/app_name"

            android:parentActivityName="com.example.calculator.app.MainScreen">
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.example.calculator.app.MainScreen"
                />
            <meta-data android:name="android.support.UI_OPTIONS"
                android:value="splitActionBarWhenNarrow"/>
            <intent-filter>
                <action android:name="android.intent.action.ANALYSIS" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>


    </application>

</manifest>

任何人的想法?

3 个答案:

答案 0 :(得分:2)

<meta-data android:name="android.support.UI_OPTIONS"
            />

meta-data需要android:valueandroid:resource属性。

答案 1 :(得分:1)

您只需删除一个&#34;&gt;&#34;来自第一项活动

答案 2 :(得分:0)

我最近遇到了这个问题,但是这是元数据的问题,所以我要做的是删除整个标签及其内容。在下面查看我从Manifest.xml文件中删除的内容。当我删除此应用程序时,我的应用程序已成功安装。

<meta-data android:name"com.google.android.actions" />

该代码显示了为解决该问题而从Manifest.xml文件中删除的数据。