mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
43826facfa
Summary: Passed `--mode HermesDebug` to `run-android` command when running from watch mode by pressing `a` on terminal running a dev server. The flag is the same as in the `package.json`: https://github.com/facebook/react-native/blob/27f38f6f0647ec1809ee0a0d8e9da3a77a9115b1/packages/rn-tester/package.json#L17 ## Changelog: [INTERNAL] [CHANGED] - Add missing params when running Android app from watch mode by pressing `a` Pull Request resolved: https://github.com/facebook/react-native/pull/41979 Test Plan: Run `yarn start` press `a` in the watch mode, and Android app should be build and launch correctly. Reviewed By: cipolleschi Differential Revision: D52265462 Pulled By: lunaleaps fbshipit-source-id: b2fbe6c889d8067876e160a8ce64dedcc4ce24d7
33 lines
888 B
JavaScript
33 lines
888 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// Inside the React Native monorepo, we need to explicitly extend the base
|
|
// CLI config as the adjacent package will not be conventionally discovered.
|
|
const config = require('../react-native/react-native.config.js');
|
|
|
|
module.exports = {
|
|
...config,
|
|
reactNativePath: '../react-native',
|
|
project: {
|
|
ios: {
|
|
sourceDir: '.',
|
|
},
|
|
android: {
|
|
sourceDir: '../../',
|
|
// To remove once the CLI fix for manifestPath search path is landed.
|
|
manifestPath:
|
|
'packages/rn-tester/android/app/src/main/AndroidManifest.xml',
|
|
packageName: 'com.facebook.react.uiapp',
|
|
watchModeCommandParams: ['--mode HermesDebug'],
|
|
},
|
|
},
|
|
};
|