diff --git a/engine/src/flutter/shell/platform/android/io/flutter/embedding/android/FlutterView.java b/engine/src/flutter/shell/platform/android/io/flutter/embedding/android/FlutterView.java index 9fd5f5b714c..e307db8176b 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/embedding/android/FlutterView.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/embedding/android/FlutterView.java @@ -1112,7 +1112,6 @@ public class FlutterView extends FrameLayout // -------- Start: Mouse ------- @Override - @RequiresApi(API_LEVELS.API_24) @NonNull public PointerIcon getSystemPointerIcon(int type) { return PointerIcon.getSystemIcon(getContext(), type); @@ -1150,7 +1149,6 @@ public class FlutterView extends FrameLayout *
See {@link #detachFromFlutterEngine()} for information on how to detach from a {@link * FlutterEngine}. */ - @RequiresApi(API_LEVELS.API_24) public void attachToFlutterEngine(@NonNull FlutterEngine flutterEngine) { Log.v(TAG, "Attaching to a FlutterEngine: " + flutterEngine); if (isAttachedToFlutterEngine()) { @@ -1278,7 +1276,6 @@ public class FlutterView extends FrameLayout *
See {@link #attachToFlutterEngine(FlutterEngine)} for information on how to attach a {@link * FlutterEngine}. */ - @RequiresApi(API_LEVELS.API_24) public void detachFromFlutterEngine() { Log.v(TAG, "Detaching from a FlutterEngine: " + flutterEngine); if (!isAttachedToFlutterEngine()) {