AAPT: error: unexpected element <applications> found in <manifest> - Andoid Studio

AAPT: error: unexpected element <applications> found in <manifest> - Andoid Studio

我正试图通过构建移动应用程序来完成我的最后一年项目。每次我 运行 模拟器上的代码都会弹出这个错误。具体在“debug\AndoidManifest.xml”文件上。有人可以帮助我吗?

<applications
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.Login" >
    <activity android:name="com.example.login.Login" />
    <activity android:name="com.example.login.Register" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name="com.example.login.MainActivity" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

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

标签应该是 <application> 而不是 <applications>。 从中删除 s