Hi All,
I am trying to create a widget using AppWiget frame work.
I was successful in creating the UI but i was not able to update the
UI .
I am getting following error:
06-10 15:46:29.407: WARN/ActivityManager(582): Unable to start service
Intent { comp={com.regard.solotion.widget/
com.regard.solotion.widget.MyService} }: not found
I am wondering what I am doing wronghere is my Manifest file <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.regard.solotion.widget" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/icon" android:label="@string/ app_name"> <!-- Broadcast Receiver that will process AppWidget updates --> <receiver android:name=".MyWidget" android:label="@string/ widget_name"> <intent-filter> <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> </intent-filter> <meta-data android:name="android.appwidget.provider" android:resource="@xml/mywidget" /> <service android:name=".MyService" /> </receiver> </application> <uses-permission android:name="android.permission.INTERNET" /> <uses-sdk android:minSdkVersion="3" /> </manifest> I am calling the service from the MyWidget which extends AppWidgetProvider Please help me out Thanks, Glory --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" 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-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

