From ef75de97b5fc24719d9ccb4e3244cf55191cf79b Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Thu, 3 Nov 2022 20:22:23 -0700 Subject: [PATCH] Remove project.android block from rn-tester's CLI config (#35197) Summary: The project.android block is unnecessary and contains a wrong path. Let's use the default path which is `./android`. ## Changelog [Internal] - Remove project.android block from rn-tester's CLI config Pull Request resolved: https://github.com/facebook/react-native/pull/35197 Test Plan: Tested locally + will wait for a CI run Reviewed By: robhogan Differential Revision: D41013193 Pulled By: cortinico fbshipit-source-id: 5c76c9b571b23ad71a23a8f3f05a9acb4d6e20b9 --- packages/rn-tester/react-native.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/rn-tester/react-native.config.js b/packages/rn-tester/react-native.config.js index df48de8b095..9e9896b9a35 100644 --- a/packages/rn-tester/react-native.config.js +++ b/packages/rn-tester/react-native.config.js @@ -29,8 +29,5 @@ module.exports = { ios: { sourceDir: '.', }, - android: { - sourceDir: '.', - }, }, };