From fe79abb32ca3425ff689b7641d9200461ea8166d Mon Sep 17 00:00:00 2001 From: David Vacca Date: Fri, 28 Aug 2020 16:57:55 -0700 Subject: [PATCH] Introduce TransparentImmersiveReactActivity in FB4A Summary: This diff creates the new TransparentImmersiveReactActivity in FB4A, the intention is to help integrate TransparentReactActivity with Fb4A Changelog: [Deprecated][Android] Deprecated method UIManagerModule.getUIImplementation. This method will not be part of the new architecture of React Native. Reviewed By: stashuk Differential Revision: D23324543 fbshipit-source-id: 35395fe410790a9611a4637361b888678eb0a836 --- .../java/com/facebook/react/uimanager/UIManagerModule.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModule.java b/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModule.java index 2336cf82953f57..17480d628e73c3 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModule.java +++ b/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIManagerModule.java @@ -198,7 +198,10 @@ public UIManagerModule( /** * This method gives an access to the {@link UIImplementation} object that can be used to execute * operations on the view hierarchy. + * + * @deprecated This method will not be supported by the new architecture of react native. */ + @Deprecated public UIImplementation getUIImplementation() { return mUIImplementation; }