The Android embedding still checks if the io.flutter.automatically-register-plugins manifest flag is set in the Flutter application:
|
public static FlutterApplicationInfo load(@NonNull Context applicationContext) { |
. That flag is long overdue for removal, as it was used before automatic registration of plugins.
As several stable releases have passed since their deprecation, references to this flag should be removed from the embedding.
The Android embedding still checks if the
io.flutter.automatically-register-pluginsmanifest flag is set in the Flutter application:flutter/engine/src/flutter/shell/platform/android/io/flutter/embedding/engine/loader/ApplicationInfoLoader.java
Line 147 in ab337ad
As several stable releases have passed since their deprecation, references to this flag should be removed from the embedding.