View Single Post
  #1 (permalink)  
Old January 14th, 2009, 10:49 AM
sunrain sunrain is offline
Authorized User
Points: 119, Level: 2
Points: 119, Level: 2 Points: 119, Level: 2 Points: 119, Level: 2
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Nov 2006
Location: , , .
Posts: 28
Thanks: 0
Thanked 1 Time in 1 Post
Default Manifest Editor - Application tab shows empty page

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

Last edited by sunrain : January 14th, 2009 at 11:13 AM.
Reply With Quote