diff --git a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngine.java b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngine.java index f8580519d56..ca03bc94196 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngine.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngine.java @@ -37,8 +37,6 @@ import io.flutter.plugin.platform.PlatformViewsController; /** * A single Flutter execution environment. *
- * WARNING: THIS CLASS IS CURRENTLY EXPERIMENTAL. USE AT YOUR OWN RISK. - *
* The {@code FlutterEngine} is the container through which Dart code can be run in an Android * application. *
diff --git a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterJNI.java b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterJNI.java index 2bd663f0310..9ec51f7d8e4 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterJNI.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterJNI.java @@ -33,9 +33,6 @@ import io.flutter.view.FlutterCallbackInformation; /** * Interface between Flutter embedding's Java code and Flutter engine's C/C++ code. * - * WARNING: THIS CLASS IS EXPERIMENTAL. DO NOT SHIP A DEPENDENCY ON THIS CODE. - * IF YOU USE IT, WE WILL BREAK YOU. - * * Flutter's engine is built with C/C++. The Android Flutter embedding is responsible for * coordinating Android OS events and app user interactions with the C/C++ engine. Such coordination * requires messaging from an Android app in Java code to the C/C++ engine code. This diff --git a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterShellArgs.java b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterShellArgs.java index 544411b2757..65c25d5a9f5 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterShellArgs.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/FlutterShellArgs.java @@ -13,9 +13,6 @@ import java.util.*; /** * Arguments that can be delivered to the Flutter shell when it is created. *
- * WARNING: THIS CLASS IS EXPERIMENTAL. DO NOT SHIP A DEPENDENCY ON THIS CODE. - * IF YOU USE IT, WE WILL BREAK YOU. - *
* The term "shell" refers to the native code that adapts Flutter to different platforms. Flutter's * Android Java code initializes a native "shell" and passes these arguments to that native shell * when it is initialized. See {@link io.flutter.view.FlutterMain#ensureInitializationComplete(Context, String[])} diff --git a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/DartMessenger.java b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/DartMessenger.java index 3d23b4fd091..f403ada7274 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/DartMessenger.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/DartMessenger.java @@ -20,9 +20,6 @@ import io.flutter.plugin.common.BinaryMessenger; /** * Message conduit for 2-way communication between Android and Dart. *
- * WARNING: THIS CLASS IS EXPERIMENTAL. DO NOT SHIP A DEPENDENCY ON THIS CODE. - * IF YOU USE IT, WE WILL BREAK YOU. - *
* See {@link BinaryMessenger}, which sends messages from Android to Dart *
* See {@link PlatformMessageHandler}, which handles messages to Android from Dart diff --git a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/PlatformMessageHandler.java b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/PlatformMessageHandler.java index 15600e1c3f4..925cf8ce8d3 100644 --- a/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/PlatformMessageHandler.java +++ b/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/dart/PlatformMessageHandler.java @@ -8,8 +8,7 @@ import android.support.annotation.NonNull; import android.support.annotation.Nullable; /** - * WARNING: THIS CLASS IS EXPERIMENTAL. DO NOT SHIP A DEPENDENCY ON THIS CODE. - * IF YOU USE IT, WE WILL BREAK YOU. + * Handler that receives messages from Dart code. */ public interface PlatformMessageHandler { void handleMessageFromDart(@NonNull final String channel, @Nullable byte[] message, final int replyId);