The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.providers.subscribedfeeds" |
| 3 | android:sharedUserId="android.uid.system"> |
| 4 | |
| 5 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 6 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 7 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_READ" /> |
| 8 | <uses-permission android:name="android.permission.SUBSCRIBED_FEEDS_WRITE" /> |
| 9 | |
| 10 | <application android:process="system" |
| 11 | android:allowClearUserData="false" |
| 12 | android:icon="@drawable/app_icon" |
| 13 | android:label="Sync Feeds"> |
| 14 | <uses-library android:name="com.google.android.gtalkservice" /> |
| 15 | <provider android:name="SubscribedFeedsProvider" |
| 16 | android:authorities="subscribedfeeds" android:syncable="false" |
| 17 | android:multiprocess="false" |
| 18 | android:readPermission="android.permission.SUBSCRIBED_FEEDS_READ" |
| 19 | android:writePermission="android.permission.SUBSCRIBED_FEEDS_WRITE" /> |
| 20 | <receiver android:name="SubscribedFeedsBroadcastReceiver"> |
| 21 | <intent-filter> |
Wei Huang | 97ecc9c | 2009-05-11 17:44:20 -0700 | [diff] [blame] | 22 | <action android:name="android.intent.action.REMOTE_INTENT" /> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | <category android:name="GSYNC_TICKLE"/> |
| 24 | </intent-filter> |
| 25 | <intent-filter> |
| 26 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 27 | </intent-filter> |
| 28 | <intent-filter> |
| 29 | <action android:name="com.android.subscribedfeeds.action.REFRESH" /> |
| 30 | </intent-filter> |
| 31 | </receiver> |
| 32 | <service android:name="SubscribedFeedsIntentService"/> |
| 33 | </application> |
| 34 | </manifest> |