aboutsummaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-08-29 20:48:46 -0700
committerScott Jackson <daneren2005@gmail.com>2013-08-29 20:48:46 -0700
commitd96760a8dc86483c631c0bef721c5807a0908d69 (patch)
tree43633ab29187302b9214467f4aeabd6d594126e6 /AndroidManifest.xml
parent413a21d8e12c69f6c859e34b8336524b01c01402 (diff)
downloaddsub-d96760a8dc86483c631c0bef721c5807a0908d69.tar.gz
dsub-d96760a8dc86483c631c0bef721c5807a0908d69.tar.bz2
dsub-d96760a8dc86483c631c0bef721c5807a0908d69.zip
Separated into Playlist/Podcast sync adapters
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml23
1 files changed, 19 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 626c5a5b..dacb617a 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -91,15 +91,25 @@
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
- <service android:name="github.daneren2005.dsub.service.sync.SyncService"
+ <service android:name=".service.sync.PlaylistSyncService"
android:exported="true"
android:process=":sync">
- <intent-filter>com.example.android.datasync.provider
+ <intent-filter>
+ <action android:name="android.content.SyncAdapter"/>
+ </intent-filter>
+ <meta-data android:name="android.content.SyncAdapter"
+ android:resource="@xml/playlists_syncadapter" />
+ </service>
+ <service android:name=".service.sync.PodcastSyncService"
+ android:exported="true"
+ android:process=":sync">
+
+ <intent-filter>
<action android:name="android.content.SyncAdapter"/>
</intent-filter>
<meta-data android:name="android.content.SyncAdapter"
- android:resource="@xml/syncadapter" />
+ android:resource="@xml/podcasts_syncadapter" />
</service>
<receiver android:name="github.daneren2005.dsub.receiver.MediaButtonIntentReceiver">
@@ -159,10 +169,15 @@
<provider android:name="github.daneren2005.dsub.provider.DSubSearchProvider"
android:authorities="github.daneren2005.dsub.provider.DSubSearchProvider"/>
<provider android:name="github.daneren2005.dsub.service.sync.StubProvider"
- android:authorities="github.daneren2005.dsub.provider"
+ android:authorities="github.daneren2005.dsub.playlists.provider"
android:label="Playlists"
android:exported="false"
android:syncable="true"/>
+ <provider android:name="github.daneren2005.dsub.service.sync.StubProvider"
+ android:authorities="github.daneren2005.dsub.podcasts.provider"
+ android:label="Podcasts"
+ android:exported="false"
+ android:syncable="true"/>
<meta-data android:name="android.app.default_searchable"
android:value="github.daneren2005.dsub.activity.QueryReceiverActivity"/>