Skip to content

Commit

Permalink
[ FIX ] obsolete javaCompile to getJavaCompileProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
ghondar committed Aug 17, 2019
1 parent 1c5ef3e commit 49d21b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ afterEvaluate { project ->

android.libraryVariants.all { variant ->
def name = variant.name.capitalize()
task "jar${name}"(type: Jar, dependsOn: variant.javaCompile) {
from variant.javaCompile.destinationDir
task "jar${name}"(type: Jar, dependsOn: variant.getJavaCompileProvider) {
from variant.getJavaCompileProvider.destinationDir
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-torrent-streamer",
"title": "React Native Torrent Streamer",
"version": "0.2.0",
"version": "0.2.1",
"description": "Torrent Streamer for react-native",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 49d21b9

Please sign in to comment.