Skip to content

Commit

Permalink
Fix onPause vs onStop
Browse files Browse the repository at this point in the history
Revert convivaAnalyticsIntegration = null
  • Loading branch information
testcenter committed Aug 28, 2024
1 parent 19ad7c3 commit 4e9aa76
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ protected void onResume() {
protected void onPause() {
super.onPause();
if (bitmovinPlayerView != null) {
bitmovinPlayerView.onStop();
bitmovinPlayerView.onPause();
}
}

Expand All @@ -167,6 +167,7 @@ protected void onDestroy() {
}
if (convivaAnalyticsIntegration != null) {
convivaAnalyticsIntegration.release();
convivaAnalyticsIntegration = null;
}
}

Expand Down

0 comments on commit 4e9aa76

Please sign in to comment.