Skip to content

Commit

Permalink
fix the JNI output path (#1014)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #1014

Differential Revision: D62434222
  • Loading branch information
zielinskimz authored and facebook-github-bot committed Sep 10, 2024
1 parent 054e4bc commit ee1609d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ ext.deps = [
supportDynamicAnimations : 'androidx.dynamicanimation:dynamicanimation-ktx:1.0.0-alpha03',
// lifecycle
lifecycle : 'androidx.lifecycle:lifecycle-runtime:2.6.1',
lifecycleService : 'androidx.lifecycle:lifecycle-service:2.6.1',
viewModel : 'androidx.lifecycle:lifecycle-viewmodel:2.3.1',
liveData : 'androidx.lifecycle:lifecycle-livedata:2.6.1',
// First-party
Expand Down
3 changes: 2 additions & 1 deletion lib/yoga/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ task buckBuild(type: Exec) {
commandLine buckPath, 'build', '//lib/yogajni:jni[shared]', '--show-output'
doLast {
System.out.println("[Yoga Buck Build]: exit value: ${executionResult.get().exitValue}")
def build_outputs = executionResult.get().exitValue.trim()
System.out.println("[Yoga Buck Build]: path value: ${executionResult.get().toString()}")
def build_outputs = executionResult.get().toString().trim()
System.out.println("[Yoga Buck Build]: build outputs:\n${build_outputs}")
}
}
1 change: 1 addition & 0 deletions litho-rendercore/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ dependencies {
compileOnly deps.supportAnnotations
implementation deps.supportCore
implementation deps.lifecycle
implementation deps.lifecycleService

testImplementation deps.assertjCore
testImplementation deps.junit
Expand Down

0 comments on commit ee1609d

Please sign in to comment.