[android] Suppress deprecation warning for AsyncTask

https://developer.android.com/reference/android/os/AsyncTask:

> This class was deprecated in API level 30.
> Use the standard java.util.concurrent utilities instead.

Under the hood AsyncTask does exactly what Google said - uses the standard
java.util.concurrent utilities. There is nothing to fix. In the worst
case we will import this class into our repository.

https://android.googlesource.com/platform/frameworks/base/+/refs/heads/master/core/java/android/os/AsyncTask.java

Closes #3632

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2023-11-25 16:52:55 +02:00
parent a48c5919a8
commit b5bfa613e2

View file

@ -51,11 +51,13 @@ public class MediaPlayerWrapper
}
@NonNull
@SuppressWarnings("deprecation") // https://github.com/organicmaps/organicmaps/issues/3632
private static AsyncTask<Integer, Void, InitializationResult> makeInitTask(@NonNull MediaPlayerWrapper wrapper)
{
return new InitPlayerTask(wrapper);
}
@SuppressWarnings("deprecation") // https://github.com/organicmaps/organicmaps/issues/3632
public void playback(@RawRes int streamResId)
{
if (isCurrentSoundStream(streamResId) && mPlayer == null)