aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2020-10-02 20:06:29 -0700
committerScott Jackson <daneren2005@gmail.com>2020-10-02 20:06:29 -0700
commit11e150ac6a86fa2a8f5636ee0844f6cc7a22f42f (patch)
treeb38b1bf44fa6f10e02b27502fc07276a40048aac /app/src/main/AndroidManifest.xml
parent5c569a1fbf3d07fcdc58d695c9d93da6a989a44d (diff)
parent019064b305a8d13db4ede6183a14d1439fca5315 (diff)
downloaddsub-11e150ac6a86fa2a8f5636ee0844f6cc7a22f42f.tar.gz
dsub-11e150ac6a86fa2a8f5636ee0844f6cc7a22f42f.tar.bz2
dsub-11e150ac6a86fa2a8f5636ee0844f6cc7a22f42f.zip
Merge branch 'MoritzMaxeiner-dsub' into version-28
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 29be4d04..0a211246 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -91,10 +91,10 @@
</intent-filter>
</activity>
- <service android:name=".service.DownloadService"
+ <service android:name="github.daneren2005.dsub.service.DownloadService"
android:label="DSub Playback Service"/>
- <service android:name=".service.AutoMediaBrowserService"
+ <service android:name="github.daneren2005.dsub.service.AutoMediaBrowserService"
android:exported="true">
<intent-filter>
@@ -216,24 +216,24 @@
</receiver>
<provider android:name="github.daneren2005.dsub.provider.DSubSearchProvider"
- android:authorities="github.daneren2005.dsub.provider.DSubSearchProvider"/>
+ android:authorities="@string/provider.search"/>
<provider android:name="github.daneren2005.dsub.provider.PlaylistStubProvider"
- android:authorities="github.daneren2005.dsub.playlists.provider"
+ android:authorities="@string/provider.playlist"
android:label="@string/button_bar.playlists"
android:exported="false"
android:syncable="true"/>
<provider android:name="github.daneren2005.dsub.provider.PodcastStubProvider"
- android:authorities="github.daneren2005.dsub.podcasts.provider"
+ android:authorities="@string/provider.podcast"
android:label="@string/button_bar.podcasts"
android:exported="false"
android:syncable="true"/>
<provider android:name="github.daneren2005.dsub.provider.StarredStubProvider"
- android:authorities="github.daneren2005.dsub.starred.provider"
+ android:authorities="@string/provider.starred"
android:label="@string/main.albums_starred"
android:exported="false"
android:syncable="true"/>
<provider android:name="github.daneren2005.dsub.provider.MostRecentStubProvider"
- android:authorities="github.daneren2005.dsub.mostrecent.provider"
+ android:authorities="@string/provider.recently_added"
android:label="@string/main.albums_newest"
android:exported="false"
android:syncable="true"/>