同じ問題について他のすべてのスレッドを調べましたが、まだ何が問題なのかわかりません。Eclipse 4.2 と最新の Android SDK を使用しています。初歩的な質問で恐縮ですが、どなたかお力添えいただけると幸いです。私のコードは次のようになります (エラーを生成する行を でマークしましたX
):
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="paul.learning.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
X <activity
android:name=".MyFirstActivity"
android:label="@string/title_activity_my_first"
android:name="paul.learning.myfirstapp.DisplayMessageActivity" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>