Hello,
I have done the Todo List example from Chapter 2, and while at Chapter 3, I opened the AndroidManifest.xml file using the Manifest Editor. My problem is that the Application tab is empty, as opposed to how it is supposed to look (Figure 3-2, page 50). All other tabs work correctly. I have the ADT and the Android Editor plugins installed on both Eclipse 3.4.1, and Eclipse JEE 3.3.2. I tried reinstalling the plugins but I get the same results. The AndroidManifest.xml file looks like below:
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.paad.todolist"
android:versionCode="1"
android:versionName="1.0.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ToDoList"
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>
Any ideas why the Application tab shows me an empty page?
Thank you,
Mihai