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
Hi, I am using this plugin for many of my applications.
But now from last two apps I got this Note which is irritate me even my all plugins have updated version, flutter showing this note.
Please check and let me know how to solve this.
The text was updated successfully, but these errors were encountered:
/home/lukaskurz/.pub-cache/hosted/pub.dartlang.org/launch_review-3.0.1/android/src/main/java/com/iyaffle/launchreview/LaunchReviewPlugin.java:11: warning: [deprecation] Registrar in PluginRegistry has been deprecated
import io.flutter.plugin.common.PluginRegistry.Registrar;
^
/home/lukaskurz/.pub-cache/hosted/pub.dartlang.org/launch_review-3.0.1/android/src/main/java/com/iyaffle/launchreview/LaunchReviewPlugin.java:41: warning: [deprecation] Registrar in PluginRegistry has been deprecated
public static void registerWith(Registrar registrar) {
^
2 warnings
I am guessing this has to do with the backwards compatibility to v1 embedding, since registerWith and Registrar is no longer used in v2 embedding. The official guide for migrating to v2, still recommends keeping this for backwards compatibility.
Therefore I would recommend adding @SuppressWarnings("deprecation") above the function, as many other libraries do the same.
Hi, I am using this plugin for many of my applications.
But now from last two apps I got this Note which is irritate me even my all plugins have updated version, flutter showing this note.
Please check and let me know how to solve this.
The text was updated successfully, but these errors were encountered: