-
Notifications
You must be signed in to change notification settings - Fork 24.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android Fix for 9145: No longer hard code build port #23616
Android Fix for 9145: No longer hard code build port #23616
Conversation
@@ -33,6 +33,7 @@ rn_android_build_config( | |||
package = "com.facebook.react", | |||
values = [ | |||
"boolean IS_INTERNAL_BUILD = true", | |||
"int DEBUG_SERVER_HOST_PORT = 8081", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to do this to get unit tests to pass. Not sure if this is the best approach.
@@ -28,8 +30,8 @@ | |||
"\u2022 Ensure that the packager server is running\n" + | |||
"\u2022 Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run 'adb devices' to see a list of connected devices\n" + | |||
"\u2022 Ensure Airplane Mode is disabled\n" + | |||
"\u2022 If you're on a physical device connected to the same machine, run 'adb reverse tcp:8081 tcp:8081' to forward requests from your device\n" + | |||
"\u2022 If your device is on the same Wi-Fi network, set 'Debug server host & port for device' in 'Dev settings' to your machine's IP address and the port of the local dev server - e.g. 10.0.1.1:8081\n\n"; | |||
"\u2022 If you're on a physical device connected to the same machine, run 'adb reverse tcp:" + DEBUG_SERVER_HOST_PORT + " tcp:" + DEBUG_SERVER_HOST_PORT + "' to forward requests from your device\n" + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really want to use AndroidInfoHelpers.getAdbReverseTcpCommand()
here, but I wasn't sure if modules in common
should depend on other modules.
@nhunzaker thanks for getting this started 🎉 It looks like you've submitted your changes to You'd need to make your changes in |
@Salakar ahh cool. Thanks! I think I finally got a flow down where I can build the archive and link it to a project. Sure enough, the port isn't passed through. I'll try to figure it out! |
ReactAndroid/src/main/java/com/facebook/react/common/DebugServerException.java
Show resolved
Hide resolved
@Salakar I was able to make headway by using a configurable integer res value:
This makes it easy to add an overide in
I first looked at manifest placeholders, but they're annoying because they can easily be overridden by other use cases, like if you assign over them with Resource values were also reasonable to figure out in Buck, which I'm not very familiar with. The drawback is that the utilities that access the port also need access to context, but I think it's manageable. It's only a problem right now for the error message the suggests What do you think about this approach? |
I updated |
ReactAndroid/build.gradle
Outdated
@@ -286,6 +291,9 @@ android { | |||
|
|||
buildConfigField("boolean", "IS_INTERNAL_BUILD", "false") | |||
buildConfigField("int", "EXOPACKAGE_FLAGS", "0") | |||
|
|||
resValue "integer", "react_native_dev_server_port", reactNativeDevServerPort("8081") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't strictly necessary, but useful if you link the ReactNative module directly.
Just following up here. Without putting pressure to review this, I wanted to make sure things are easy to confirm, and I really wanted an easier way to verify changes for future fixes, so I made a repo to help with that: https://github.com/nhunzaker/ReactNativeTestPlan Assuming you have buck installed already, I think all you have to do is:
There is a more comprehensive README for setting things up from scratch, and you might need to verify that the NDK gets connected correctly, but it demonstrates the fix. Then confirm the change with:
The Android app should build and connect to port 4000 I'm not sure if you all have something like this already, but it was really helpful for me. |
Thanks for sending this PR! I think it's really important and valuable that you have submitted a fix for that after the issue being open for so long. |
What's the status of this PR? |
This is ready for review, but I'm worried the complicated test plan is making review difficult. In the short term, I'd be happy to address any feedback about the code itself. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me. @nhunzaker can you rebase it so I can land this?
This commit removes the hardcoded instances of port 8081 on Android with a build configuration property. This allows setting of the port React Native Android connects to for the local build server. For this change to work, there must also be an update to the react native CLI to pass along this setting. Related issues: facebook#9145
- Also adds new buck module for integer resource for testing
This commit downcases REACT_NATIVE_DEV_SERVER_PORT to match other string resources and sets up the debug server to correctly report errors.
cd17376
to
d3f325d
Compare
@@ -23,7 +25,7 @@ | |||
|
|||
public static final String METRO_HOST_PROP_NAME = "metro.host"; | |||
|
|||
private static final int DEBUG_SERVER_HOST_PORT = 8081; | |||
private static final int DEBUG_SERVER_HOST_PORT = ReactBuildConfig.DEBUG_SERVER_HOST_PORT; | |||
private static final int INSPECTOR_PROXY_PORT = 8081; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cpojer I noticed these ports are now the same on master. I wonder if this should now be:
private static final int DEBUG_SERVER_HOST_PORT = ReactBuildConfig.DEBUG_SERVER_HOST_PORT;
private static final int INSPECTOR_PROXY_PORT = ReactBuildConfig.DEBUG_SERVER_HOST_PORT;
Any idea?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use the same config by default but still allow it to be customized separately? I think that’s ideal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep. That makes sense to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confused myself during the rebase. This actually was removed and replaced with a resource value.
I can definitely do the same with the inspector proxy port. Just need to trouble shoot some issues running tests from a fresh setup.
@cpojer Updated! Just had question about the update to the inspector proxy port (https://github.com/facebook/react-native/pull/23616/files#r290498124) Also looks like a lot of CI checks are failing. I'll look into that next. |
Sounds good! Let me know once CI is passing (don’t worry if the same job fails on master) and then I can merge it. We can update the CLI in a separate commit later once you land those changes there. |
@@ -289,6 +299,10 @@ android { | |||
|
|||
buildConfigField("boolean", "IS_INTERNAL_BUILD", "false") | |||
buildConfigField("int", "EXOPACKAGE_FLAGS", "0") | |||
|
|||
resValue "integer", "react_native_dev_server_port", reactNativeDevServerPort() | |||
resValue "integer", "react_native_inspector_proxy_port", reactNativeInspectorProxyPort() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated. This now lets you set the inspector port using:
./gradlew :app:installDebug -PreactNativeDevServerPort=3000
By default it uses the dev server port.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's ship it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cpojer is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
This pull request was successfully merged by @nhunzaker in 995b4d3. When will my fix make it into a release? | Upcoming Releases |
Summary: ### Problem According to #9145, the `--port` setting is not respected when executing `react-native run-android`. The templates that report things like what port the dev server runs on are hard coded as well. ### Solution This commit replaces the hardcoded instances of port 8081 on Android with a build configuration property. This allows setting of the port React Native Android connects to for the local build server. For this change to work, there must also be an update to the react native CLI to pass along this setting: react-native-community/cli@master...nhunzaker:9145-android-no-port-hardcode-cli To avoid some noise on their end, I figured I wouldn't submit a PR until it's this approach is deemed workable. ## Changelog [Android][fixed] - `react-native run-android --port <x>` correctly connects to dev server and related error messages display the correct port Pull Request resolved: #23616 Differential Revision: D15645200 Pulled By: cpojer fbshipit-source-id: 3bdfd458b8ac3ec78290736c9ed0db2e5776ed46
Just following up, I have sent along the accompanying PR for the CLI here: Though I hit some trouble with some changes for the 2.0 release (described over there). I'll keep things moving along over on the cli repo! |
Summary: ### Problem According to facebook#9145, the `--port` setting is not respected when executing `react-native run-android`. The templates that report things like what port the dev server runs on are hard coded as well. ### Solution This commit replaces the hardcoded instances of port 8081 on Android with a build configuration property. This allows setting of the port React Native Android connects to for the local build server. For this change to work, there must also be an update to the react native CLI to pass along this setting: react-native-community/cli@master...nhunzaker:9145-android-no-port-hardcode-cli To avoid some noise on their end, I figured I wouldn't submit a PR until it's this approach is deemed workable. ## Changelog [Android][fixed] - `react-native run-android --port <x>` correctly connects to dev server and related error messages display the correct port Pull Request resolved: facebook#23616 Differential Revision: D15645200 Pulled By: cpojer fbshipit-source-id: 3bdfd458b8ac3ec78290736c9ed0db2e5776ed46
Summary: With the current ways metro location is determined, when we want to use a different metro port this requires app to be rebuild as the port and location are stored in resource file that gets compiled to R.class. The only way to avoid app rebuild due to a port change is to use shared preferences that can be accessed from dev menu, where metro URL can be specified. However, due to a separate code-paths for retrieving bundle location and for `/inspector/device` calls, the setting only applies to the former. As a consequence, you can change metro URL in the shared preferences, but debugging would only work if you use the default port or you rebuild the app with the correct port number. This PR removes the separate code-path for retrieving inspector URL including all the dependencies scattered across different files including the gradle plugin. We then replace calls to `PackagerConnectionSettings.getInspectorServerHost` with `PackagerConnectionSettings.getDebugServerHost` which respects the shared preferences and other possible ways of configuring the port. I decided to remove the separate inspector URL code path, as the resource value for inspector port added in #23616 was never functioning properly due to a bug. In the said PR introduced a bug in [AndroidInfoHelpers.java](https://github.com/facebook/react-native/blob/a13d51ff1c38ea85e59f4215563c0dd05452f670/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoHelpers.java#L77) where `react_native_dev_server_port` was used instead `react_native_inspector_proxy_port`. As a result the added resource value was never read. This can be potentially a breaking change as I'm removing some public methods. However I think it is unlikely anyone relied on said methods. As a part of this PR I'm also changing occurences of removed methods from ReactAndroid.api – I don't know how to test those changes since I don't understand how this file is used as it doesn't have any references in public code. ## Changelog: [ANDROID] [FIXED] - Make Android respect metro location from shared preferences for the debugger workflow Pull Request resolved: #42617 Test Plan: 1. Run android app on emulator using default port 2. Check the debugger works when using "Open Debugger" option from dev menu 3. Restart metro with custom port (`--port 9090`) while keeping the app running 4. Open dev menu, click "Settings" then "Debug server host & port", put "10.0.2.2:9090" there 5. Reload the app 6. Before this change things like hot reload would continue to work while "Open Debugger" option would do nothing 7. After this change both reloading and debugging will work Important: I haven't tested changes made to ReactAndroid.api as I don't know what this files is used for with no references in the codebase. Reviewed By: cortinico Differential Revision: D53010023 Pulled By: huntie fbshipit-source-id: cc8b9c5c7e834ec9ea02b1ed5acf94f04f7b7116
Summary
Problem
According to #9145, the
--port
setting is not respected when executingreact-native run-android
. The templates that report things like what port the dev server runs on are hard coded as well.Solution
This commit replaces the hardcoded instances of port 8081 on Android with a build configuration property. This allows setting of the port React Native Android connects to for the local build server.
For this change to work, there must also be an update to the react native CLI to pass along this setting:
react-native-community/cli@master...nhunzaker:9145-android-no-port-hardcode-cli
To avoid some noise on their end, I figured I wouldn't submit a PR until it's this approach is deemed workable.
Changelog
[Android][fixed] -
react-native run-android --port <x>
correctly connects to dev server and related error messages display the correct portTest Plan
Preparing a test case for this is pretty involved, but:
(for future PR's, I'd love figure out a better flow for reproducing fixes)
Then from the new project, execute:
And in another terminal window:
You can also do this from gradle via:
Error messages are also updated, so you'll see the correct port if the server is down: