im trying to catch the Time_Tick im using appWidgetProvider for some reason the Intent is not catched im sure i aded the IntentFilter
any ideas ? <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="learn.Class_01" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name="Chepter_01" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> <action android:name="android.intent.action.TIME_TICK"></action> </intent-filter> </activity> <receiver android:name=".MySMSMailBox" > <intent-filter> <action android:name="android.provider.Telephony.SMS_RECEIVED" /> <action android:name="android.intent.action.TIME_TICK"></action> <action android:name="android.intent.action.TIME_SET"></action> <action android:name="android.intent.action.TIMEZONE_CHANGED"></action> </intent-filter> </receiver> </application> <uses-sdk android:minSdkVersion="3" /> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

