You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix edge case:when playback is triggered when the app is not currently running, then playback was stopped, and the device was rotated, the intent to show now playing would get fired again, causing the now playing screen to show up again. The fix was to detect if the savedInstanceState was null or not, and to ignore the intents if it wasn't null.
} elseif(intent.getAction().equals(com.atomjack.shared.Intent.ACTION_PLAY_LOCAL)) { // this intent will only arrive when playing music. playing video will go to VideoPlayerActivity
503
+
} elseif(intent.getAction().equals(com.atomjack.shared.Intent.ACTION_PLAY_LOCAL) && !previouslyShutDown) { // this intent will only arrive when playing music. playing video will go to VideoPlayerActivity
0 commit comments