Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: David Luhmer <[email protected]>
  • Loading branch information
David-Development committed Oct 7, 2023
1 parent 7f4498b commit 41bbcfb
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package de.luhmer.owncloudnewsreader;

import static de.luhmer.owncloudnewsreader.services.PodcastPlaybackService.CURRENT_PODCAST_MEDIA_TYPE;

import android.app.PictureInPictureParams;
import android.content.ComponentName;
import android.content.pm.PackageManager;
import android.content.res.Configuration;
import android.graphics.Point;
import android.os.Build;
import android.os.Bundle;
import android.os.RemoteException;
import android.support.v4.media.MediaBrowserCompat;
import android.support.v4.media.MediaMetadataCompat;
import android.support.v4.media.session.MediaControllerCompat;
Expand All @@ -29,8 +30,6 @@
import de.luhmer.owncloudnewsreader.services.PodcastPlaybackService;
import de.luhmer.owncloudnewsreader.services.podcast.PlaybackService;

import static de.luhmer.owncloudnewsreader.services.PodcastPlaybackService.CURRENT_PODCAST_MEDIA_TYPE;

public class PiPVideoPlaybackActivity extends AppCompatActivity {

private static final String TAG = PiPVideoPlaybackActivity.class.getCanonicalName();
Expand Down Expand Up @@ -172,6 +171,8 @@ public void onEvent(CollapsePodcastView event) {

@Override
public void onBackPressed() {
super.onBackPressed();

Log.d(TAG, "onBackPressed() called");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
enterPictureInPictureMode();
Expand Down

0 comments on commit 41bbcfb

Please sign in to comment.