Skip to content

Commit

Permalink
bump to 10.17
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliskov committed Nov 22, 2020
1 parent b476290 commit f72d0a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ public void onPlayEnd() {
switch (mRepeatMode) {
case PlaybackUiController.REPEAT_ALL:
onNextClicked();
mController.showControls(true);
if (!mController.isInPIPMode()) {
mController.showControls(true);
}
break;
case PlaybackUiController.REPEAT_ONE:
loadVideo(mLastVideo);
Expand Down
4 changes: 2 additions & 2 deletions smarttubetv/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ android {
applicationId "com.liskovsoft.smarttubetv"
minSdkVersion project.properties.minSdkVersion
targetSdkVersion project.properties.targetSdkVersion
versionCode 156
versionName "10.16"
versionCode 157
versionName "10.17"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"

Expand Down

0 comments on commit f72d0a0

Please sign in to comment.