Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
WoLewicki authored Jan 16, 2024
1 parent 6d3f73f commit f14e8b8
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ android {
}
}
}
publishing {
singleVariant('release') {
withSourcesJar()
withJavadocJar()
}
}
}

repositories {
Expand Down Expand Up @@ -206,9 +212,9 @@ afterEvaluate { project ->
group = "Reporting"
description = "Generate Jacoco coverage reports after running tests."
reports {
xml.enabled = true
html.enabled = true
csv.enabled = true
xml.required = true
html.required = true
csv.required = true
}
classDirectories.setFrom(fileTree(
dir: 'build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/onfido/reactnative/sdk',
Expand Down

0 comments on commit f14e8b8

Please sign in to comment.