Skip to content

Commit

Permalink
0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Jun 21, 2016
1 parent a2338c7 commit 5852d5c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add this in your module's `build.gradle` file:
```gradle
dependencies {
// ... other dependencies
compile 'com.afollestad:easyvideoplayer:0.2.7'
compile 'com.afollestad:easyvideoplayer:0.2.8'
}
```

Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.afollestad'
PUBLISH_ARTIFACT_ID = 'easyvideoplayer'
PUBLISH_VERSION = '0.2.7'
PUBLISH_VERSION = '0.2.8'
TARGET_SDK = 24
BUILD_TOOLS = "24.0.0"
GOOGLE_LIBS = "24.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,6 @@ protected void onFinishInflate() {
final FrameLayout.LayoutParams textureLp = new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT);
mTextureView = new TextureView(getContext());
mTextureView.setBackgroundColor(Color.BLACK);
addView(mTextureView, textureLp);
mTextureView.setSurfaceTextureListener(this);

Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

ext {
PUBLISH_VERSION = '0.2.7'
PUBLISH_VERSION = '0.2.8'
TARGET_SDK = 24
BUILD_TOOLS = "24.0.0"
GOOGLE_LIBS = "24.0.0"
Expand Down

0 comments on commit 5852d5c

Please sign in to comment.