0
我在我的manifest.xml
中遇到了一個錯誤,我無法解決這個錯誤。 錯誤是:如何在android studio中的manifest.xml中添加最終的換行符
Manifest file doesnt end with an final newline.
錯誤最後</application>
前右occures。
<?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>
沒有,當我在我的Android工作室menifest –
我不科幻複製此代碼檢測到的問題在將其複製到我的android studio清單後發現任何問題。但嘗試使用此鏈接http://stackoverflow.com/questions/23851090/android-manifest-error-manifest-file-doesnt-end-with-a-final-newline – Bethan
您是否在外部編輯器中編輯此文件? –