forked from organicmaps/organicmaps
[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:
parent
a48c5919a8
commit
b5bfa613e2
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue