From d7e584627aceaa685f39c58e6e50ba62f9294532 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Wed, 24 Feb 2021 07:25:48 -0800 Subject: [PATCH] Update testing-rn instructions Summary: `install` is now ambiguous because of some new plugins we've added. Reviewed By: mweststrate Differential Revision: D26633940 fbshipit-source-id: 62369ba76cced905350e62b7782619811b7284a0 --- docs/extending/testing-rn.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/extending/testing-rn.mdx b/docs/extending/testing-rn.mdx index 3c91821a3..638496068 100644 --- a/docs/extending/testing-rn.mdx +++ b/docs/extending/testing-rn.mdx @@ -28,7 +28,7 @@ GROUP=com.facebook.flipper ... ``` -Now, run `./gradlew install` in the root of the repository. This will +Now, run `./gradlew installArchives -PRELEASE_SIGNING_ENABLED=false` in the root of the repository. This will place the artifact files in your local `~/.m2/repository` folder. ## Using the new Release @@ -45,7 +45,7 @@ FLIPPER_VERSION=0.44.99-SNAPSHOT Now run `yarn android` to rebuild, install and launch the RN sample app. -To test further changes, rerun the `./gradlew install` and `yarn android` steps. +To test further changes, rerun the `./gradlew installArchives -PRELEASE_SIGNING_ENABLED=false` and `yarn android` steps. ## Full Diff @@ -58,7 +58,7 @@ index 1ccd002a..100a7169 100644 +++ b/gradle.properties @@ -4,7 +4,7 @@ # LICENSE file in the root directory of this source tree. - + # POM publishing constants -VERSION_NAME=0.44.1-SNAPSHOT +VERSION_NAME=0.44.99-SNAPSHOT @@ -71,7 +71,7 @@ index 495c12e8..bc815d0e 100644 +++ b/react-native/ReactNativeFlipperExample/android/gradle.properties @@ -30,4 +30,4 @@ android.useAndroidX=true android.enableJetifier=true - + # Version of flipper SDK to use with React Native -FLIPPER_VERSION=0.30.2 +FLIPPER_VERSION=0.44.99-SNAPSHOT