1

I keep getting an error that says, "Element type "application" must be followed by either attribute specifications, ">" or "/>"."

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"

I'm getting the error right below this:

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

</manifest>
4

5 回答 5

6

这是正确的形式,看看你是否没有关闭一些标签。

<application android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    ...>
    <activity ...>
        <intent-filter>    
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
于 2013-07-08T23:24:14.530 回答
1

正如我朋友所说,检查正确的格式

对我来说是这样的:

前 :

<activity android:name=".DisplayMessageActivity" android:label="display_message_activity" 
</activity>

后:

<activity android:name=".DisplayMessageActivity" android:label="display_message_activity" >
</activity>

然后错误消失了

于 2014-09-29T23:50:50.623 回答
0

我只是出于完全不同的原因遇到了这个错误。出于某种原因,Android Studio 在我的 XML 中将字符串的每个实例都替换为name"name"例如,将它们全部用双引号括起来)。它彻底破坏了一切。

我必须清除所有内容中的双引号,清理项目并重建它。

于 2019-04-22T16:20:01.750 回答
0

就我而言,已在应用程序标签内放置了一条评论(由构建工具?):

    <application android:allowBackup="true"
        <!-- android:debuggable="true" -->
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/GdxTheme">

在我删除了整个 debuggable=true 注释行之后 - 一切正常。

于 2017-01-01T18:24:56.923 回答
0

如果您是 Flutter 开发人员并且遇到此异常,您必须知道AndroidManifest您的 Flutter 项目中有两个文件。一个在调试文件夹内,另一个是主文件夹。我的主文件夹AndroidManifest正常且格式正确,但AndroidManifest由于 git 冲突,调试文件夹中的文件夹不正常且格式不正确。在此处输入图像描述

你必须解决这个问题。

于 2022-02-28T18:23:55.657 回答