コードに問題があります。
ところで、私は thenewboston から学んでおり、現在チュートリアル 11 を使用しています。チュートリアル 10 の実行中にこのエラーが発生しました。これが修正されるまで、次のチュートリアルに進む予定はありません。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.thenewboston.sammy"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
それは次のように述べています:要素タイプ「アプリケーション」の後には、属性指定「>」または「/>」が続く必要があります。
<activity android:name="com.thenewboston.sammy.StartingPoint"
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>