Android Widget does not show in list untill second run -
i trying run widget , have seen problem has been discussed in many questions here , every 1 suggest activity should started app can shown. have started activity when finish activity , still widget not shown. here manifest . appreciated.
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mamlambo.imageswidget" android:installlocation="internalonly" android:versioncode="2" android:versionname="1.0.2" > <application android:debuggable="true" android:icon="@drawable/icon" android:label="@string/app_name" > <receiver android:name=".imageswidgetprovider" > <intent-filter> <action android:name="android.appwidget.action.appwidget_update" /> </intent-filter> <meta-data android:name="android.appwidget.provider" android:resource="@xml/imageswidget_info" /> </receiver> <activity android:name=".imageswidgetconfiguration" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <activity android:name=".recycle" > </activity> <activity android:name=".search" > </activity> <activity android:name=".tabingactivity" > <intent-filter> <action android:name="android.intent.action.media_mounted" /> <data android:scheme="file" /> </intent-filter> </activity> <activity android:name=".mainactivity" > </activity> <receiver android:name=".imageswidgetprovider" > <intent-filter> <action android:name="android.appwidget.action.appwidget_update" /> <data android:scheme="images_widget" /> </intent-filter> <meta-data android:name="android.appwidget.provider" android:resource="@xml/imageswidget_info" /> </receiver> <receiver android:name=".imageswidgetprovider" > <intent-filter> <action android:name="android.appwidget.action.appwidget_configure" /> </intent-filter> </receiver> <receiver android:name=".customreceiver" android:enabled="true" > <intent-filter> <action android:name="android.intent.action.delete" /> </intent-filter> </receiver> </application> <uses-sdk android:minsdkversion="3" /> </manifest>
Comments
Post a Comment