File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed
packages/react-native/ReactAndroid
src/main/java/com/facebook/react/config Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -2025,9 +2025,9 @@ public final class com/facebook/react/common/network/OkHttpCallUtil {
2025
2025
public static final fun cancelTag (Lokhttp3/OkHttpClient;Ljava/lang/Object;)V
2026
2026
}
2027
2027
2028
- public class com/facebook/react/config/ReactFeatureFlags {
2028
+ public final class com/facebook/react/config/ReactFeatureFlags {
2029
+ public static final field INSTANCE Lcom/facebook/react/config/ReactFeatureFlags;
2029
2030
public static field dispatchPointerEvents Z
2030
- public fun <init> ()V
2031
2031
}
2032
2032
2033
2033
public final class com/facebook/react/defaults/DefaultComponentsRegistry {
Original file line number Diff line number Diff line change 5
5
* LICENSE file in the root directory of this source tree.
6
6
*/
7
7
8
- package com .facebook .react .config ;
8
+ package com.facebook.react.config
9
9
10
- import com .facebook .infer . annotation . Nullsafe ;
11
- import com . facebook . proguard . annotations . DoNotStripAny ;
10
+ import com.facebook.proguard.annotations.DoNotStripAny
11
+ import kotlin.jvm.JvmField
12
12
13
13
/* *
14
14
* Hi there, traveller! This configuration class is not meant to be used by end-users of RN. It
15
15
* contains mainly flags for features that are either under active development and not ready for
16
16
* public consumption, or for use in experiments.
17
17
*
18
- * <p> These values are safe defaults and should not require manual changes.
18
+ * These values are safe defaults and should not require manual changes.
19
19
*/
20
- @ Nullsafe (Nullsafe .Mode .LOCAL )
21
- @ Deprecated (since = "Use com.facebook.react.internal.featureflags.ReactNativeFeatureFlags instead." )
20
+ @Deprecated(" Use com.facebook.react.internal.featureflags.ReactNativeFeatureFlags instead." )
22
21
@DoNotStripAny
23
- public class ReactFeatureFlags {
24
-
25
- public static boolean dispatchPointerEvents = false ;
22
+ public object ReactFeatureFlags {
23
+ @JvmField public var dispatchPointerEvents: Boolean = false
26
24
}
You can’t perform that action at this time.
0 commit comments