Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
update build.gradle with fix from software-mansion#315 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
tavour-frank committed Jul 10, 2019
1 parent f6b69e0 commit 679c8f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ afterEvaluate { project ->

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

Expand Down

0 comments on commit 679c8f5

Please sign in to comment.