Skip to content

Commit

Permalink
Prepare Release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vkay94 committed Aug 26, 2021
1 parent 499b4e1 commit 22a2ff7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,22 @@ allprojects {
}
```

Then, in your app's directory, you can include it the same way like other libraries.
Make sure that you set the comnpatibilty version to 1.8 inside `compileOptions`:
Then, in your app's directory, you can include it the same way like other libraries:

```gradle
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
// If you face problems during building you should try including the below lines if you
// haven't already
// compileOptions {
// sourceCompatibility JavaVersion.VERSION_1_8
// targetCompatibility JavaVersion.VERSION_1_8
// }
}
dependencies {
implementation 'com.github.vkay94:DoubleTapPlayerView:1.0.3'
implementation 'com.github.vkay94:DoubleTapPlayerView:1.0.4'
}
```

Expand All @@ -54,8 +56,6 @@ into your XML layout, e.g. on top of `DoubleTapPlayerView` or inside ExoPlayer's

```xml
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >

Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ ext.build = [

libMajor : 1,
libMinor : 0,
libPatch : 3,
libPatch : 4,
]

0 comments on commit 22a2ff7

Please sign in to comment.