私は最初のAndroidアプリをまとめていて、単純な問題だと思っていたものに遭遇しましたが、どこにも解決策が見つかりません。エミュレーターでコードを実行しようとすると、次のようになります。
AndroidManifest.xml: line 1: syntax error near unexpected token `newline'
AndroidManifest.xml: line 1: `<?xml version="1.0" encoding="utf-8"?>'
これが私のマニフェストの最初の2行です。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
マニフェスト構文は私には完全に正しいように見えます。それが重要な場合、私はOSXでEclipseを使用しています。私が見つけた唯一の関連する質問は次のとおりです: Android:layoutoptエラー-予期しないトークン`newline'の近くの構文エラー
しかし、そこには答えがなく、それはバグであり、報告する必要があると言っているだけです。それはまだバグですか?
編集:これがAndroidManifest.xmlファイル全体です。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="onemorepallet.app"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="13" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".OnemorepalletActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>