Skip to content

Commit

Permalink
Merge pull request #11 from dev-labs-bg/develop
Browse files Browse the repository at this point in the history
Prepared for v0.0.3
  • Loading branch information
slavipetrov authored Nov 13, 2017
2 parents c32b082 + 670949f commit 4ac26c8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Download
==========
You can use Gradle:
```gradle
compile 'bg.devlabs.fullscreenvideoview:library:0.0.1'
compile 'bg.devlabs.fullscreenvideoview:library:0.0.3'
```
or Maven:
```maven
<dependency>
<groupId>bg.devlabs.fullscreenvideoview</groupId>
<artifactId>library</artifactId>
<version>0.0.1</version>
<version>0.0.3</version>
<type>pom</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion library/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply from: 'keystore.gradle'
ext {
publishedGroupId = 'bg.devlabs.fullscreenvideoview'
artifactId = 'library'
libraryVersion = '0.0.2'
libraryVersion = '0.0.3'
}

version = libraryVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ private void initOnBackPressedListener() {
setOnKeyListener(new VideoOnKeyListener());
}

public Builder build(File videoFile) {
public Builder videoFile(File videoFile) {
builder = new Builder(this, controller, orientationDelegate,
videoMediaPlayer);
builder.videoFile(videoFile);
return builder;
}

public Builder build(String videoUrl) {
public Builder videoUrl(String videoUrl) {
builder = new Builder(this, controller, orientationDelegate,
videoMediaPlayer);
builder.videoUrl(videoUrl);
Expand Down

0 comments on commit 4ac26c8

Please sign in to comment.