diff options
author | Moritz Maxeiner <mm@ucw.sh> | 2020-09-21 22:04:51 +0200 |
---|---|---|
committer | Moritz Maxeiner <mm@ucw.sh> | 2020-09-26 14:53:23 +0200 |
commit | eb827e57d292e10bf1593c4ff6f79e37fdf99f16 (patch) | |
tree | a3b96f064e296cb8b4304ed2f1f973eb0a756e29 /app/src/main/java/github | |
parent | 45dfb9653cf5fcfe7ca5e3a20437aeee64b9ecb1 (diff) | |
download | dsub-eb827e57d292e10bf1593c4ff6f79e37fdf99f16.tar.gz dsub-eb827e57d292e10bf1593c4ff6f79e37fdf99f16.tar.bz2 dsub-eb827e57d292e10bf1593c4ff6f79e37fdf99f16.zip |
Derive provider descriptors from applicationId
Diffstat (limited to 'app/src/main/java/github')
-rw-r--r-- | app/src/main/java/github/daneren2005/dsub/util/Constants.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/java/github/daneren2005/dsub/util/Constants.java b/app/src/main/java/github/daneren2005/dsub/util/Constants.java index e62b93f9..0ce58d73 100644 --- a/app/src/main/java/github/daneren2005/dsub/util/Constants.java +++ b/app/src/main/java/github/daneren2005/dsub/util/Constants.java @@ -223,10 +223,10 @@ public final class Constants { // Account prefs public static final String SYNC_ACCOUNT_NAME = "Subsonic Account"; public static final String SYNC_ACCOUNT_TYPE = BuildConfig.APPLICATION_ID + ".subsonic"; - public static final String SYNC_ACCOUNT_PLAYLIST_AUTHORITY = "github.daneren2005.dsub.playlists.provider"; - public static final String SYNC_ACCOUNT_PODCAST_AUTHORITY = "github.daneren2005.dsub.podcasts.provider"; - public static final String SYNC_ACCOUNT_STARRED_AUTHORITY = "github.daneren2005.dsub.starred.provider"; - public static final String SYNC_ACCOUNT_MOST_RECENT_AUTHORITY = "github.daneren2005.dsub.mostrecent.provider"; + public static final String SYNC_ACCOUNT_PLAYLIST_AUTHORITY = BuildConfig.APPLICATION_ID + ".playlists.provider"; + public static final String SYNC_ACCOUNT_PODCAST_AUTHORITY = BuildConfig.APPLICATION_ID + ".podcasts.provider"; + public static final String SYNC_ACCOUNT_STARRED_AUTHORITY = BuildConfig.APPLICATION_ID + ".starred.provider"; + public static final String SYNC_ACCOUNT_MOST_RECENT_AUTHORITY = BuildConfig.APPLICATION_ID + ".mostrecent.provider"; public static final String TASKER_EXTRA_BUNDLE = "com.twofortyfouram.locale.intent.extra.BUNDLE"; |