I have developed an Android Widget, and it was working fine. I added some extra functionality and pushed an update through the Android Market. Now people are complaining tha
I had the same problem with my project. I think it worth pointing out that I could fix this problem magically just by removing some new lines from my code in Eclipse. As an example I changed the following code,
Intent clickIntent = new Intent(this.getApplicationContext(),
MyWidgetProvider.class);
to
Intent clickIntent = new Intent(this.getApplicationContext(),MyWidgetProvider.class);