You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary:
Fixes a bug where page IDs would collide for multiple connected Android devices running the same React Native app. The `Secure.ANDROID_ID` key (not value!) was being substituted in the ID string (pre-hashing) — now this segment is fixed.
Changelog:
[Android][Changed] - Update constructor signature of `DevServerHelper`
Reviewed By: hoxyq
Differential Revision: D58134323
fbshipit-source-id: 859e2758108e266167205a777bb6a6e87ca0573b
Copy file name to clipboardexpand all lines: packages/react-native/ReactAndroid/api/ReactAndroid.api
+1-1
Original file line number
Diff line number
Diff line change
@@ -2067,7 +2067,7 @@ public final class com/facebook/react/devsupport/DefaultDevSupportManagerFactory
2067
2067
2068
2068
public class com/facebook/react/devsupport/DevServerHelper {
2069
2069
public static final field RELOAD_APP_EXTRA_JS_PROXY Ljava/lang/String;
2070
-
public fun <init> (Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;Ljava/lang/String;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;)V
2070
+
public fun <init> (Lcom/facebook/react/modules/debug/interfaces/DeveloperSettings;Landroid/content/Context;Lcom/facebook/react/packagerconnection/PackagerConnectionSettings;)V
Copy file name to clipboardexpand all lines: packages/react-native/ReactAndroid/src/main/java/com/facebook/react/devsupport/PerftestDevSupportManager.java
+1-3
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,7 @@ public void onInternalSettingsChanged() {}
0 commit comments