错误:Android Studio中不允许匹配“ [xX] [mM] [lL]”的处理指令目标。

时间:2019-07-15 11:30:12

标签: android-studio

我无法理解我的代码真正发生了什么。 iam学习在android studio上开发android应用程序,无法解决此问题。请帮帮我。 我的代码没有建立,并且给我错误:不允许与“ [xX] [mM] [lL]”匹配的处理指令目标。

红色错误行出现在AndoidManifest.xml页面上

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

    <application
        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/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

0 个答案:

没有答案