So i developed a widget for android. It all worked fine when i had default samsung ROM for my sgs3 (android 4.1), But when i updated my android version to 4.2.2(CM10) i don't see my widget under 'Widgets' category in the android menu. here is my manifest:
<receiver android:name="ToDoListWidget"
android:label="ToDoList"
android:icon="@drawable/icon" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/items_widget" />
</receiver>
and here is my appwidget-provider:
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:initialLayout="@layout/widget"
android:minHeight="100dp"
android:minWidth="320dp"
android:resizeMode="vertical"
android:updatePeriodMillis="100000" >
</appwidget-provider>
Any ideas what should i cahnge?
EDIT: Hey, please help me with this one, it happend again right now when i create a widget in another app. Is the problem in my code? in my device? in my SDK?