flutter 3.29.0 버전에 따른 io.flutter.plugin.common.PluginRegistry.Registrar deprecation 문제
tosspayments_webview_flutter-1.0.5/android/src/main/java/com/tosspayments/tosspayments_webview_flutter/WebViewFlutterPlugin.java:44
위치에 이 코드가 flutter에서 deprecation 시킨 Registrar 를 사용하고 있어서 빌드 실패되고 있습니다.
다른 package 들에서도 deprecate 로 인해 업데이트 하고 있는 사항이므로, 빠르게 수정 부탁드립니다.
@SuppressWarnings("deprecation")
public static void registerWith(io.flutter.plugin.common.PluginRegistry.Registrar registrar) {
registrar
.platformViewRegistry()
.registerViewFactory(
"plugins.flutter.io/tosspayments_webview",
new WebViewFactory(registrar.messenger(), registrar.view()));
new FlutterCookieManager(registrar.messenger());
}
위치에 이 코드가 flutter에서 deprecation 시킨 Registrar 를 사용하고 있어서 빌드 실패되고 있습니다.
다른 package 들에서도 deprecate 로 인해 업데이트 하고 있는 사항이므로, 빠르게 수정 부탁드립니다.
@SuppressWarnings("deprecation")
public static void registerWith(io.flutter.plugin.common.PluginRegistry.Registrar registrar) {
registrar
.platformViewRegistry()
.registerViewFactory(
"plugins.flutter.io/tosspayments_webview",
new WebViewFactory(registrar.messenger(), registrar.view()));
new FlutterCookieManager(registrar.messenger());
}
