diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 52756534..0a211246 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -24,6 +24,7 @@ <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> + <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <uses-feature android:name="android.hardware.bluetooth" android:required="false" /> @@ -39,7 +40,8 @@ android:backupAgent="github.daneren2005.dsub.util.SettingsBackupAgent" android:icon="@drawable/launch" android:theme="@style/Theme.DSub.Light" - android:largeHeap="true"> + android:largeHeap="true" + android:usesCleartextTraffic="true"> <uses-library android:name="android.test.runner" /> @@ -89,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> @@ -214,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"/> |