From 5d240a8ed38bddf9f52ec67adc01b57b02e54f55 Mon Sep 17 00:00:00 2001 From: Andrei Coman Date: Tue, 6 Sep 2016 03:29:48 -0700 Subject: [PATCH] Fix uiexplorer BUCK install Summary: It's missing a dependency Reviewed By: bestander Differential Revision: D3821094 fbshipit-source-id: 8e048f6daa052ff002ebef2498920d7bd69d324d --- Examples/UIExplorer/android/app/BUCK | 1 + 1 file changed, 1 insertion(+) diff --git a/Examples/UIExplorer/android/app/BUCK b/Examples/UIExplorer/android/app/BUCK index 399675d62..0c864a078 100644 --- a/Examples/UIExplorer/android/app/BUCK +++ b/Examples/UIExplorer/android/app/BUCK @@ -14,6 +14,7 @@ android_library( srcs = glob(['src/main/java/**/*.java']), deps = [ ':res', + react_native_dep('third-party/android/support/v4:lib-support-v4'), react_native_dep('third-party/java/jsr-305:jsr-305'), react_native_target('java/com/facebook/react/modules/core:core'), react_native_target('java/com/facebook/react/shell:shell'),