Hi List,

I am new on Android development and I this is a foolish issue with my
Android App. I am trying to learn/execute the tutorials given at
http://developer.android.com/resources/tutorials/views/index.html.

Today I was trying to execute - HelloTabwidget Application, and I
received - "The application HelloTabWidget has stopped unexpectedly.
Please Try Again." I ran the application many time, restarted AVD(SDK
3 and API 11) and Eclipse but no luck.


Logs from Eclipse -

[2011-03-26 13:03:51 - HelloTabWidget] Android Launch!
[2011-03-26 13:03:51 - HelloTabWidget] adb is running normally.
[2011-03-26 13:03:51 - HelloTabWidget] Performing
com.example.HelloTabWidget activity launch
[2011-03-26 13:03:51 - HelloTabWidget] Automatic Target Mode: using
existing emulator 'emulator-5554' running compatible AVD 'AVD3'
[2011-03-26 13:03:51 - HelloTabWidget] WARNING: Application does not
specify an API level requirement!
[2011-03-26 13:03:51 - HelloTabWidget] Device API version is 11
(Android 3.0)
[2011-03-26 13:03:54 - HelloTabWidget] Application already deployed.
No need to reinstall.
[2011-03-26 13:03:54 - HelloTabWidget] Starting activity
com.example.HelloTabWidget on device emulator-5554
[2011-03-26 13:03:56 - HelloTabWidget] ActivityManager: Starting:
Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER]
cmp=com.example/.HelloTabWidget }



Below is my AndroidManifest.xml file -

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="com.example"
      android:versionCode="1"
      android:versionName="1.0">


    <application android:icon="@drawable/icon" android:label="@string/
app_name">
                <activity android:name=".HelloTabWidget" android:label="@string/
app_name"
          android:theme="@android:style/Theme.NoTitleBar">
                <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category
android:name="android.intent.category.LAUNCHER" />
                </intent-filter>

          </activity>

    </application>
</manifest>


Thanks in Advance
Sanoop

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to