This commit is contained in:
Lorenzo Pichilli 2022-04-28 20:42:46 +02:00
parent a14bdce16c
commit 15ecdc86fb
3 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
## 5.4.3+3
- Fixed "Android error: package org.jetbrains.annotations does not exist import org.jetbrains.annotations.NotNull;" [#1166](https://github.com/pichillilorenzo/flutter_inappwebview/issues/1166)
## 5.4.3+2
- Fixed "Latest version 5.4.3 crashes on Android" [#1159](https://github.com/pichillilorenzo/flutter_inappwebview/issues/1159)

View File

@ -26,8 +26,6 @@ import androidx.annotation.Nullable;
import com.pichillilorenzo.flutter_inappwebview.InAppWebViewFlutterPlugin;
import com.pichillilorenzo.flutter_inappwebview.in_app_webview.FlutterWebView;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
@ -52,7 +50,7 @@ public class HeadlessInAppWebViewManager implements MethodChannel.MethodCallHand
}
@Override
public void onMethodCall(final MethodCall call, @NotNull final Result result) {
public void onMethodCall(final MethodCall call, final Result result) {
final String id = (String) call.argument("id");
switch (call.method) {

View File

@ -1,6 +1,6 @@
name: flutter_inappwebview
description: A Flutter plugin that allows you to add an inline webview, to use an headless webview, and to open an in-app browser window.
version: 5.4.3+2
version: 5.4.3+3
homepage: https://github.com/pichillilorenzo/flutter_inappwebview
environment: