Skip to content

Commit 40a0cdb

Browse files
mdvaccafacebook-github-bot
authored andcommitted
Introduce ViewManagerInterface (facebook#48548)
Summary: Pull Request resolved: facebook#48548 In this diff I'm introducing the new public API ViewManagerInterface, this will be used in the next diffs of the stack to be implemented by all viewManagerInterfaces that are code-gen when using the new architecture changelog: [Android][Changed] Introduce new public API ViewManagerInterface Reviewed By: javache Differential Revision: D67957886 fbshipit-source-id: 372bf99e4c977c3a4d2252b54371ec9f0dae6e9f
1 parent 6865e5a commit 40a0cdb

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

packages/react-native/ReactAndroid/api/ReactAndroid.api

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5273,6 +5273,9 @@ public abstract interface class com/facebook/react/uimanager/ViewManagerResolver
52735273
public abstract fun getViewManagerNames ()Ljava/util/Collection;
52745274
}
52755275

5276+
public abstract interface class com/facebook/react/uimanager/ViewManagerWithGeneratedInterface {
5277+
}
5278+
52765279
public final class com/facebook/react/uimanager/ViewProps {
52775280
public static final field ACCESSIBILITY_ACTIONS Ljava/lang/String;
52785281
public static final field ACCESSIBILITY_COLLECTION Ljava/lang/String;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
8+
package com.facebook.react.uimanager
9+
10+
/** Marker interface to be extended by all code-generated ViewManagerInterface. */
11+
public interface ViewManagerWithGeneratedInterface {}

0 commit comments

Comments
 (0)