diff options
author | H. Lehmann <ByteHamster@users.noreply.github.com> | 2019-11-22 22:30:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-22 22:30:19 +0100 |
commit | f5dd8062794a896be194aee28eab61fc0cb7d586 (patch) | |
tree | 6b4e75ca4613dea21d67de0e67f6734d3e5249b6 /core | |
parent | 1a6cb9bd416798b66c34a5bb06ce2adc8040cb60 (diff) | |
parent | c6fb84fa1fb36efe6097b054aabd4697c21de811 (diff) | |
download | AntennaPod-f5dd8062794a896be194aee28eab61fc0cb7d586.zip |
Merge pull request #3637 from ByteHamster/remove-prestissimo
Removed prestissimo
Diffstat (limited to 'core')
-rw-r--r-- | core/src/main/java/de/danoeh/antennapod/core/util/playback/PlaybackController.java | 3 | ||||
-rw-r--r-- | core/src/main/res/values/strings.xml | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/util/playback/PlaybackController.java b/core/src/main/java/de/danoeh/antennapod/core/util/playback/PlaybackController.java index beb0a202d..e7f6ad4f1 100644 --- a/core/src/main/java/de/danoeh/antennapod/core/util/playback/PlaybackController.java +++ b/core/src/main/java/de/danoeh/antennapod/core/util/playback/PlaybackController.java @@ -675,8 +675,7 @@ public class PlaybackController { } public boolean canSetPlaybackSpeed() { - return org.antennapod.audio.MediaPlayer.isPrestoLibraryInstalled(activity.getApplicationContext()) - || UserPreferences.useSonic() + return UserPreferences.useSonic() || UserPreferences.useExoplayer() || Build.VERSION.SDK_INT >= 23 || (playbackService != null && playbackService.canSetSpeed()); diff --git a/core/src/main/res/values/strings.xml b/core/src/main/res/values/strings.xml index f694fbc2e..420fb9d59 100644 --- a/core/src/main/res/values/strings.xml +++ b/core/src/main/res/values/strings.xml @@ -301,7 +301,7 @@ <!-- Variable Speed --> <string name="download_plugin_label">Download Plugin</string> <string name="no_playback_plugin_title">Plugin Not Installed</string> - <string name="no_playback_plugin_or_sonic_msg">For variable speed playback to work, we recommend to enable the built-in Sonic mediaplayer [Android 4.1+].\n\nAlternatively, you can download the third party plugin <i>Prestissimo</i> from the Play Store.\nAny problems with Prestissimo are not the responsibility of AntennaPod and should be reported to the plugin owner.</string> + <string name="no_playback_plugin_or_sonic_msg">For variable speed playback to work, we recommend to enable the built-in Sonic mediaplayer.</string> <string name="set_playback_speed_label">Playback Speeds</string> <string name="enable_sonic">Enable Sonic</string> |