Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Replace Remote Exception by IllegalStateException in MediaBrowserComp… #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import android.graphics.BitmapFactory;
import android.media.AudioManager;
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 Down Expand Up @@ -537,7 +536,8 @@ public void onConnected() {
mediaController.registerCallback(controllerCallback);
AudiofileplayerService.instance.setPendingIntentActivity(activity);
AudiofileplayerService.instance.setListener(AudiofileplayerPlugin.this);
} catch (RemoteException e) {
} catch (IllegalStateException e) {
Log.e(TAG, "ConnectionCallback.onConnected Failure", e);
throw new RuntimeException(e);
}
}
Expand Down