From 2d7e3a326f40f1b084b3cc04ba31baa46d3510f3 Mon Sep 17 00:00:00 2001 From: maxmpz Date: Tue, 27 Jun 2023 19:20:42 +0300 Subject: [PATCH] - removed PauseFlags (not used in public APIs) --- .../maxmpz/poweramp/player/PowerampAPI.java | 24 +++---------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/poweramp_api_lib/src/main/java/com/maxmpz/poweramp/player/PowerampAPI.java b/poweramp_api_lib/src/main/java/com/maxmpz/poweramp/player/PowerampAPI.java index 24c28b8e..57ec1c44 100644 --- a/poweramp_api_lib/src/main/java/com/maxmpz/poweramp/player/PowerampAPI.java +++ b/poweramp_api_lib/src/main/java/com/maxmpz/poweramp/player/PowerampAPI.java @@ -1611,24 +1611,6 @@ public static final class LyricsState { public static final String TYPE = "type"; } - public interface PauseFlags { - /** - * Ask to keep service/notification - */ - public static final int KEEP_SERVICE = 0x0001; - - /** - * Specifically ask not to keep service/notification. Has priority over KEEP_SERVICE - */ - public static final int DONT_KEEP_SERVICE = 0x0002; - - /** - * Don't fade out pause - * @since 867 - */ - public static final int NO_FADE = 0x0004; - } - /** * {@link PowerampAPI.Track} {@link PowerampAPI.Track#CAT} categories */ @@ -2042,7 +2024,7 @@ public static class Settings { * Exports Poweramp settings
* Target URI for file should be set via {@link Intent#setData} with the appropriate permissions given to Poweramp process * Extras: {@link #EXTRA_UI} - * @derpecated disabled starting from build-912 + * @deprecated disabled starting from build-912 */ @Deprecated public static final String ACTION_EXPORT_SETTINGS = "com.maxmpz.audioplayer.ACTION_EXPORT_SETTINGS"; @@ -2050,7 +2032,7 @@ public static class Settings { /** * Sent by your app to Poweramp.
* Imports Poweramp settings - * @derpecated disabled starting from build-912 + * @deprecated disabled starting from build-912 */ @Deprecated public static final String ACTION_IMPORT_SETTINGS = "com.maxmpz.audioplayer.ACTION_IMPORT_SETTINGS"; @@ -2337,7 +2319,7 @@ public static Intent newAPIIntent() { /** * Uri query parameter - filter. Currently used only for the search uri - * @Deprecated not used anymore + * @deprecated not used anymore */ @Deprecated public static final String PARAM_FILTER = "flt";