Skip to content

Commit d43801e

Browse files
MGaetan89facebook-github-bot
authored andcommitted
Fix build on GitHub (#1057)
Summary: This PR fixes the build on GitHub by adding missing dependencies to Gradle configuration files: - Add dependency to `:litho-rendercore-text` in `:litho-core`. - Add dependency to `deps.mockitokotlin` in `:litho-rendercore-text`. ## Changelog Fix build on GitHub. Pull Request resolved: #1057 Test Plan: GitHub Actions build successfully. Reviewed By: kingsleyadio Differential Revision: D75928922 Pulled By: zielinskimz fbshipit-source-id: 6878d8b3508df65ffa3c8dd92a53ad1f3cef8ca8
1 parent d66b9ec commit d43801e

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

litho-core/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ dependencies {
7474
api project(':litho-rendercore')
7575
api project(':litho-rendercore-incremental-mount')
7676
api project(':litho-rendercore-primitives')
77+
implementation project(':litho-rendercore-text')
7778
api project(':litho-rendercore-transitions')
7879
api project(':litho-rendercore-visibility')
7980

litho-rendercore-text/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ dependencies {
6161
testImplementation deps.assertjCore
6262
testImplementation deps.junit
6363
testImplementation deps.mockitoCore
64+
testImplementation deps.mockitokotlin
6465
testImplementation deps.robolectric
6566
testImplementation deps.supportTestCore
6667
}

litho-widget/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ dependencies {
4646
implementation deps.supportSwipeRefresh
4747
implementation deps.supportCore
4848
kapt project(':litho-processor')
49-
implementation project(':litho-rendercore-text')
49+
api project(':litho-rendercore-text')
5050

5151
// Annotations
5252
compileOnly deps.jsr305

0 commit comments

Comments
 (0)