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
Remove support for Android API < 23 in ReactBaseTextShadowNode (#39665)
Summary:
Pull Request resolved: #39665
Since minsdk version was increased to 23, we are deleting code using Android APIs < 23 for class ReactBaseTextShadowNode
changelog: [Android][Breaking] Remove support for Android API < 23 in ReactBaseTextShadowNode
Reviewed By: NickGerleman
Differential Revision: D48545509
fbshipit-source-id: 2bd1c74251c8af92013b065daafbab3d96a05a2e
Copy file name to clipboardExpand all lines: packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/text/ReactBaseTextShadowNode.java
+6-15Lines changed: 6 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,6 @@
7
7
8
8
packagecom.facebook.react.views.text;
9
9
10
-
importandroid.annotation.TargetApi;
11
10
importandroid.graphics.Color;
12
11
importandroid.graphics.Typeface;
13
12
importandroid.os.Build;
@@ -50,7 +49,6 @@
50
49
* <p>This also node calculates {@link Spannable} object based on subnodes of the same type, which
51
50
* can be used in concrete classes to feed native views and compute layout.
0 commit comments