react-native 0.73.0-rc.6 → 0.73.0-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/React/Base/RCTVersion.m +1 -1
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/ReactInstanceManager.java +1 -4
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/package.json +1 -1
- package/sdks/hermesc/osx-bin/hermes +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/template/package.json +1 -1
package/React/Base/RCTVersion.m
CHANGED
|
@@ -1278,14 +1278,12 @@ public class ReactInstanceManager {
|
|
|
1278
1278
|
uiManager.stopSurface(surfaceId);
|
|
1279
1279
|
} else {
|
|
1280
1280
|
FLog.w(ReactConstants.TAG, "Failed to stop surface, UIManager has already gone away");
|
|
1281
|
-
reactRoot.getRootViewGroup().removeAllViews();
|
|
1282
1281
|
}
|
|
1283
1282
|
} else {
|
|
1284
1283
|
ReactSoftExceptionLogger.logSoftException(
|
|
1285
1284
|
TAG,
|
|
1286
1285
|
new RuntimeException(
|
|
1287
1286
|
"detachRootViewFromInstance called with ReactRootView with invalid id"));
|
|
1288
|
-
reactRoot.getRootViewGroup().removeAllViews();
|
|
1289
1287
|
}
|
|
1290
1288
|
} else {
|
|
1291
1289
|
reactContext
|
|
@@ -1294,8 +1292,7 @@ public class ReactInstanceManager {
|
|
|
1294
1292
|
.unmountApplicationComponentAtRootTag(reactRoot.getRootViewTag());
|
|
1295
1293
|
}
|
|
1296
1294
|
|
|
1297
|
-
|
|
1298
|
-
reactRoot.getRootViewGroup().setId(View.NO_ID);
|
|
1295
|
+
clearReactRoot(reactRoot);
|
|
1299
1296
|
}
|
|
1300
1297
|
|
|
1301
1298
|
@ThreadConfined(UI)
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|