From 2ec67bf8013b7c37972765c1ed0094395511832c Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 20 Jul 2018 08:04:29 -0700 Subject: [PATCH] Bump first-party dependencies Summary: Important because we still run into soloader incompatibilities due to the transitive dependency of Litho on Yoga on SoLoader. Sigh. Reviewed By: priteshrnandgaonkar Differential Revision: D8931213 fbshipit-source-id: 7e2de85deb5975dbe3f25e8145a9226d6684357c --- build.gradle | 14 +++++++------- gradle.properties | 3 +++ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 27ee4305a..d5fa76f25 100644 --- a/build.gradle +++ b/build.gradle @@ -48,18 +48,18 @@ ext.deps = [ // Arch archPaging : 'android.arch.paging:runtime:1.0.0', // First-party - soloader : 'com.facebook.soloader:soloader:0.5.0', + soloader : 'com.facebook.soloader:soloader:0.5.1', screenshot : 'com.facebook.testing.screenshot:core:0.5.0', // Annotations jsr305 : 'com.google.code.findbugs:jsr305:3.0.1', inferAnnotations : 'com.facebook.infer.annotation:infer-annotation:0.11.2', // Litho - lithoAnnotations : 'com.facebook.litho:litho-annotations:0.16.0', - lithoCore : 'com.facebook.litho:litho-core:0.16.0', - lithoWidget : 'com.facebook.litho:litho-widget:0.16.0', - lithoProcessor : 'com.facebook.litho:litho-processor:0.16.0', - lithoFresco : 'com.facebook.litho:litho-fresco:0.16.0', - lithoTesting : 'com.facebook.litho:litho-testing:0.16.0', + lithoAnnotations : "com.facebook.litho:litho-annotations:$LITHO_VERSION", + lithoCore : "com.facebook.litho:litho-core:$LITHO_VERSION", + lithoWidget : "com.facebook.litho:litho-widget:$LITHO_VERSION", + lithoProcessor : "com.facebook.litho:litho-processor:$LITHO_VERSION", + lithoFresco : "com.facebook.litho:litho-fresco:$LITHO_VERSION", + lithoTesting : "com.facebook.litho:litho-testing:$LITHO_VERSION", // Debugging and testing guava : 'com.google.guava:guava:20.0', robolectric : 'org.robolectric:robolectric:3.0', diff --git a/gradle.properties b/gradle.properties index 5091c0554..35bfb51f2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,6 +14,9 @@ POM_DEVELOPER_NAME=facebook # Kotlin KOTLIN_VERSION=1.2.50 +# Shared version numbers +LITHO_VERSION=0.18.0 + # Deps for publishing GRADLE_BINTRAY_PLUGIN_VERSION=1.8.0 GRADLE_VERSIONS_PLUGIN_VERSION=0.15.0