INSTALL PARSE失败清单畸形 [英] INSTALL PARSE FAILED MANIFEST MALFORMED

查看:117
本文介绍了INSTALL PARSE失败清单畸形的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

想建立一个类Android应用程序。我不断收到错误的称号。这是我的清单:

Trying to build an Android app for a class. I keep getting the error in the title. This is my manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="Grille.play.webapp_1"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="19" />

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
       <activity
            android:name="Grille.play.webapp_1.War"
            android:configChanges="orientation"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="Grille.play.webapp_1.Jabbawocky"
            android:configChanges="orientation"
            android:label="@string/title_activity_jabbawocky"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="Grille.play.webapp_1.NASA"
            android:configChanges="orientation"
            android:label="@string/title_activity_nas"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="Grille.play.webapp_1.Roundball"
            android:configChanges="orientation"
            android:label="@string/title_activity_roundball"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

我不知道在哪里的问题。我即将开始,如果我不知道这一点,但我想明白,所以我不会在未来搞砸了。

I have no idea where the issue is. I'm about to start over if I can't figure this out, but I would like to understand so I don't screw up in the future.

推荐答案

试着改变你的包名全部小写:

Try changing your package name to be all lower case:

grille.play.webapp_1

这篇关于INSTALL PARSE失败清单畸形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆