diff --git a/shell/platform/android/io/flutter/app/FlutterActivity.java b/shell/platform/android/io/flutter/app/FlutterActivity.java index c3772e86772f9..b8e9d69e46b3a 100644 --- a/shell/platform/android/io/flutter/app/FlutterActivity.java +++ b/shell/platform/android/io/flutter/app/FlutterActivity.java @@ -35,15 +35,6 @@ public FlutterView getFlutterView() { return viewProvider.getFlutterView(); } - /** - * Hook for subclasses to customize their startup behavior. - * - * @deprecated Just override {@link #onCreate(Bundle)} instead, and add your - * logic after calling {@code super.onCreate()}. - */ - @Deprecated - protected void onFlutterReady() {} - /** * Hook for subclasses to customize the creation of the * {@code FlutterView}. @@ -75,7 +66,6 @@ public final Registrar registrarFor(String pluginKey) { protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); eventDelegate.onCreate(savedInstanceState); - onFlutterReady(); } @Override