如何在android studio中的manifest.xml中添加最终换行符

时间:2016-10-20 14:12:05

标签: android xml android-studio

我的manifest.xml中出现错误,我似乎无法解决。 错误是:

Manifest file doesnt end with an final newline.

错误发生在最后</application>之前。

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".MainMenu"
            android:theme="@android:style/Theme.Holo.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
               </activity>
          <activity android:name=".Difficulty"
             android:theme="@android:style/Theme.Holo.NoActionBar"
              />
           <activity android:name=".GameNormal"
               android:theme="@android:style/Theme.Holo.NoActionBar"
              />

        </application>

</manifest>

1 个答案:

答案 0 :(得分:0)

单击带有红线的单词(导致上述错误),然后单击Alt + Enter并选择

Un-inject Language/Reference

您还可以尝试复制清单内容,删除原始清单文件并创建新的清单文件:

enter image description here