aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorMoritz Maxeiner <mm@ucw.sh>2020-09-21 22:04:51 +0200
committerMoritz Maxeiner <mm@ucw.sh>2020-09-26 14:53:23 +0200
commiteb827e57d292e10bf1593c4ff6f79e37fdf99f16 (patch)
treea3b96f064e296cb8b4304ed2f1f973eb0a756e29 /app/src/main/res
parent45dfb9653cf5fcfe7ca5e3a20437aeee64b9ecb1 (diff)
downloaddsub-eb827e57d292e10bf1593c4ff6f79e37fdf99f16.tar.gz
dsub-eb827e57d292e10bf1593c4ff6f79e37fdf99f16.tar.bz2
dsub-eb827e57d292e10bf1593c4ff6f79e37fdf99f16.zip
Derive provider descriptors from applicationId
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/xml/mostrecent_syncadapter.xml2
-rw-r--r--app/src/main/res/xml/playlists_syncadapter.xml2
-rw-r--r--app/src/main/res/xml/podcasts_syncadapter.xml2
-rw-r--r--app/src/main/res/xml/searchable.xml2
-rw-r--r--app/src/main/res/xml/starred_syncadapter.xml2
5 files changed, 5 insertions, 5 deletions
diff --git a/app/src/main/res/xml/mostrecent_syncadapter.xml b/app/src/main/res/xml/mostrecent_syncadapter.xml
index 8c6dada2..a0172501 100644
--- a/app/src/main/res/xml/mostrecent_syncadapter.xml
+++ b/app/src/main/res/xml/mostrecent_syncadapter.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
- android:contentAuthority="github.daneren2005.dsub.mostrecent.provider"
+ android:contentAuthority="@string/provider.recently_added"
android:accountType="@string/account_type.subsonic"
android:userVisible="true"
android:supportsUploading="false"
diff --git a/app/src/main/res/xml/playlists_syncadapter.xml b/app/src/main/res/xml/playlists_syncadapter.xml
index 986f11b4..1cea7a2d 100644
--- a/app/src/main/res/xml/playlists_syncadapter.xml
+++ b/app/src/main/res/xml/playlists_syncadapter.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
- android:contentAuthority="github.daneren2005.dsub.playlists.provider"
+ android:contentAuthority="@string/provider.playlist"
android:accountType="@string/account_type.subsonic"
android:userVisible="true"
android:supportsUploading="false"
diff --git a/app/src/main/res/xml/podcasts_syncadapter.xml b/app/src/main/res/xml/podcasts_syncadapter.xml
index 7a943c32..c992fc96 100644
--- a/app/src/main/res/xml/podcasts_syncadapter.xml
+++ b/app/src/main/res/xml/podcasts_syncadapter.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
- android:contentAuthority="github.daneren2005.dsub.podcasts.provider"
+ android:contentAuthority="@string/provider.podcast"
android:accountType="@string/account_type.subsonic"
android:userVisible="true"
android:supportsUploading="false"
diff --git a/app/src/main/res/xml/searchable.xml b/app/src/main/res/xml/searchable.xml
index 35ff18f3..5967ae45 100644
--- a/app/src/main/res/xml/searchable.xml
+++ b/app/src/main/res/xml/searchable.xml
@@ -4,7 +4,7 @@
android:hint="@string/search.title"
android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"
android:voiceLanguageModel="web_search"
- android:searchSuggestAuthority="github.daneren2005.dsub.provider.DSubSearchProvider"
+ android:searchSuggestAuthority="@string/provider.search"
android:searchSuggestSelection=" unused"
android:searchSuggestIntentAction="android.intent.action.VIEW">
</searchable> \ No newline at end of file
diff --git a/app/src/main/res/xml/starred_syncadapter.xml b/app/src/main/res/xml/starred_syncadapter.xml
index f325da26..1d855057 100644
--- a/app/src/main/res/xml/starred_syncadapter.xml
+++ b/app/src/main/res/xml/starred_syncadapter.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
- android:contentAuthority="github.daneren2005.dsub.starred.provider"
+ android:contentAuthority="@string/provider.starred"
android:accountType="@string/account_type.subsonic"
android:userVisible="true"
android:supportsUploading="false"