Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit c257198

Browse files
committed
Merge branch 'master' into getTitle
2 parents f640295 + be0cfa3 commit c257198

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

AUTHORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ Jose Sanchez <josesm82@gmail.com>
4141
Debkanchan Samadder <debu.samadder@gmail.com>
4242
Audrius Karosevicius <audrius.karosevicius@gmail.com>
4343
Lukasz Piliszczuk <lukasz@intheloup.io>
44-
SoundReply Solutions GmbH <ch@soundreply.com>
44+
SoundReply Solutions GmbH <ch@soundreply.com>
45+
Rafal Wachol <rwachol@gmail.com>

packages/webview_flutter/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
* Added a getTitle getter to WebViewController.
44

5+
## 0.3.11+6
6+
7+
* Calling destroy on Android webview when flutter webview is getting disposed.
8+
>>>>>>> master
9+
510
## 0.3.11+5
611

712
* Reduce compiler warnings regarding iOS9 compatibility by moving a single

packages/webview_flutter/android/src/main/java/io/flutter/plugins/webviewflutter/FlutterWebView.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,5 +285,6 @@ private void registerJavaScriptChannelNames(List<String> channelNames) {
285285
public void dispose() {
286286
methodChannel.setMethodCallHandler(null);
287287
webView.dispose();
288+
webView.destroy();
288289
}
289290
}

0 commit comments

Comments
 (0)