Skip to content

Commit

Permalink
prepare 7.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
CarGuo committed Oct 26, 2020
1 parent 72d0252 commit e7a8d09
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,9 @@ public void onClickBlank(String url, Object... objects) {
public void onClickBlankFullscreen(String url, Object... objects) {

}

@Override
public void onComplete(String url, Object... objects) {

}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m
BINTRAY_USER=carguo
BINTRAY_KEY=
PROJ_GROUP=com.shuyu
PROJ_VERSION=7.1.7
PROJ_VERSION=7.1.8
PROJ_WEBSITEURL=https://github.com/CarGuo/GSYVideoPlayer
PROJ_ISSUETRACKERURL=
PROJ_VCSURL=git@github.com:CarGuo/GSYVideoPlayer.git
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,11 @@ public void clickForFullScreen() {

}

@Override
public void onComplete(String url, Object... objects) {

}

protected boolean isADStarted() {
return getGSYADVideoPlayer().getCurrentPlayer().getCurrentState() >= 0 &&
getGSYADVideoPlayer().getCurrentPlayer().getCurrentState() != GSYVideoView.CURRENT_STATE_NORMAL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,11 @@ public void onClickBlankFullscreen(String url, Object... objects) {

}

@Override
public void onComplete(String url, Object... objects) {

}

public boolean hideActionBarWhenFull() {
return true;
}
Expand Down

0 comments on commit e7a8d09

Please sign in to comment.