安装PARSE FAILED MANIFEST MALFORMED

gri*_*lle 1 android manifest

试图为一个类构建一个Android应用程序.我一直在标题中得到错误.这是我的表现:

<?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>
Run Code Online (Sandbox Code Playgroud)

我不知道问题出在哪里.如果我不能解决这个问题,我即将重新开始,但我想了解所以我将来不会搞砸.

bst*_*r55 5

尝试将包名更改为全小写:

grille.play.webapp_1
Run Code Online (Sandbox Code Playgroud)