blob: a3938bd5f1d5d4cfffaaacb1f6e2cc5a56c0dcc5 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001<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"
Eric Fischerf204ab32009-06-17 15:17:29 -070013 android:label="@string/app_label">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080014 <uses-library android:name="com.google.android.gtalkservice" />
15 <provider android:name="SubscribedFeedsProvider"
Fred Quintanac848b702009-08-25 20:18:46 -070016 android:authorities="subscribedfeeds"
17 android:label="@string/provider_label"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080018 android:multiprocess="false"
19 android:readPermission="android.permission.SUBSCRIBED_FEEDS_READ"
20 android:writePermission="android.permission.SUBSCRIBED_FEEDS_WRITE" />
21 <receiver android:name="SubscribedFeedsBroadcastReceiver">
22 <intent-filter>
Wei Huang97ecc9c2009-05-11 17:44:20 -070023 <action android:name="android.intent.action.REMOTE_INTENT" />
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024 <category android:name="GSYNC_TICKLE"/>
25 </intent-filter>
26 <intent-filter>
27 <action android:name="android.intent.action.BOOT_COMPLETED" />
28 </intent-filter>
29 <intent-filter>
30 <action android:name="com.android.subscribedfeeds.action.REFRESH" />
31 </intent-filter>
32 </receiver>
33 <service android:name="SubscribedFeedsIntentService"/>
34 </application>
35</manifest>